質問編集履歴

1

typo

2024/11/12 14:46

投稿

keruuuu
keruuuu

スコア15

test CHANGED
File without changes
test CHANGED
@@ -43,9 +43,9 @@
43
43
 
44
44
  threads = []
45
45
  for checker in checkers:
46
- data_generator_thread = threading.Thread(target=checker.start)
46
+ checker_thread = threading.Thread(target=checker.start)
47
- threads.append(data_generator_thread)
47
+ threads.append(checker_thread)
48
- data_generator_thread.start()
48
+ checker_thread.start()
49
49
 
50
50
  for thread in threads:
51
51
  thread.join()