From 92affec2c5cb8b34d2f3c3f962069d10df447c46 Mon Sep 17 00:00:00 2001 From: Yam ZhengLim Date: Mon, 26 Sep 2022 19:50:32 +0800 Subject: [PATCH] Output bug fix --- general_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/general_function.py b/general_function.py index 0b30c3b..b1f697e 100644 --- a/general_function.py +++ b/general_function.py @@ -19,7 +19,7 @@ def delete_csv_in_path(path): if file.endswith('.csv'): path = os.path.join(folder, file) os.remove(path) - print("[Delete Temp Complete]", path, file) + print("[Delete Temp Complete]", path) def change_to_current_directory():