feat: error feedback

This commit is contained in:
Florian Hönicke
2023-03-22 23:34:49 +01:00
parent 1c8272e706
commit f408378c33
7 changed files with 184 additions and 94 deletions

View File

@@ -10,7 +10,7 @@ def recreate_folder(folder_path):
os.makedirs(folder_path)
def persist_file(file_content, file_name):
with open(f'executor/{file_name}', 'w') as f:
with open(f'{file_name}', 'w') as f:
f.write(file_content)