We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887cf2b commit c3b88e5Copy full SHA for c3b88e5
src/gui.py
@@ -1,5 +1,7 @@
1
import multiprocessing
2
-multiprocessing.set_start_method('spawn')
+# Set the start method at the very beginning
3
+if __name__ == '__main__':
4
+ multiprocessing.set_start_method('spawn', force=True)
5
6
import sys
7
import os
0 commit comments