From 5463a0b0d3e643109360456f422d82df725f4c08 Mon Sep 17 00:00:00 2001 From: zy123 <646228430@qq.com> Date: Wed, 19 Feb 2025 16:09:50 +0800 Subject: [PATCH] =?UTF-8?q?2.19=20=E5=88=A4=E6=96=AD=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E6=8B=9B=E6=A0=87=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flask_app/routes/judge_zbfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_app/routes/judge_zbfile.py b/flask_app/routes/judge_zbfile.py index f1ed83e..507c36e 100644 --- a/flask_app/routes/judge_zbfile.py +++ b/flask_app/routes/judge_zbfile.py @@ -52,7 +52,7 @@ def judge_zbfile() -> Any: #判断是否是招标文件 logger.info(f"Local file path: {downloaded_filepath}") # 调用实际的判断函数 - judge_result = judge_zbfile_exec_sub(downloaded_filepath) + judge_result = judge_zbfile_exec(downloaded_filepath) judge = JudgeResult.YES if judge_result else JudgeResult.NO end_time = time.time()