From 700cc2ee458d2f87cc084b739f68c96966a76050 Mon Sep 17 00:00:00 2001 From: GZhao Date: Wed, 8 May 2024 09:56:23 +0800 Subject: [PATCH] fix a small bug --- tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index 0f1fb9c..add5f44 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -14,7 +14,7 @@ import io import shutil def clear_output(): - if os.path.exists(output) + if os.path.exists(output): shutil.rmtree(output) os.mkdir(output) -- GitLab