Skip to content

Commit 39b478b

Browse files
committed
Update validation.py
1 parent 6dfc49f commit 39b478b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/validation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ def clean_up(path):
8888
logger.info(f' Removing File: {path}')
8989
os.remove(path)
9090
else:
91-
folder = os.path.join(DOWNLOAD_FILE_PATH, path)
92-
logger.info(f' Removing Folder: {folder}')
93-
shutil.rmtree(folder, ignore_errors=False)
91+
# folder = os.path.join(DOWNLOAD_FILE_PATH, path)
92+
logger.info(f' Removing Folder: {path}')
93+
shutil.rmtree(path, ignore_errors=False)

0 commit comments

Comments
 (0)