From 3bac59701baf5ef2a1175f3d045154cfc42cc74a Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Mon, 5 Jan 2026 19:56:45 +0800 Subject: [PATCH] Update compileall.py --- compileall.py | 1 - 1 file changed, 1 deletion(-) diff --git a/compileall.py b/compileall.py index 4ee609c2..99de2080 100644 --- a/compileall.py +++ b/compileall.py @@ -11,7 +11,6 @@ output_dir = sys.argv[3] def do_compile(src_path, dst_path): assert os.path.isfile(src_path) - assert os.path.isfile(dst_path) cmd = f'{pkpy_exe} --compile "{src_path}" "{dst_path}"' print(src_path) assert os.system(cmd) == 0