質問編集履歴
1
typo
test
CHANGED
File without changes
|
test
CHANGED
@@ -43,9 +43,9 @@
|
|
43
43
|
|
44
44
|
threads = []
|
45
45
|
for checker in checkers:
|
46
|
-
|
46
|
+
checker_thread = threading.Thread(target=checker.start)
|
47
|
-
threads.append(
|
47
|
+
threads.append(checker_thread)
|
48
|
-
|
48
|
+
checker_thread.start()
|
49
49
|
|
50
50
|
for thread in threads:
|
51
51
|
thread.join()
|