From c053fa98621116abdb6902ddfe39144919925ee7 Mon Sep 17 00:00:00 2001 From: vincent Date: Fri, 21 Jul 2023 23:17:56 +0800 Subject: [PATCH] update --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f6e637d..2fb1070 100644 --- a/main.py +++ b/main.py @@ -197,7 +197,7 @@ def process_lines_in_batches(lines, batch_size): if __name__ == "__main__": task_file = "input.txt" batch_size = 3 # 每个线程处理的行数 + lines = read_lines_from_file(task_file) process_lines_in_batches(lines, batch_size) - print("finish, 程序结束...")