feat: dont delete code

This commit is contained in:
Florian Hönicke
2023-04-13 22:42:05 +02:00
parent 51687424ba
commit f87c28dad0
2 changed files with 9 additions and 14 deletions

View File

@@ -6,11 +6,6 @@ from typing import Generator
import sys
from contextlib import contextmanager
def create_folder_if_not_exist(folder_path):
try:
os.makedirs(folder_path)
except FileExistsError:
pass
def persist_file(file_content, file_path):
with open(file_path, 'w') as f: