Fix stupid Python runtimeerror

This commit is contained in:
James R. Barlow
2025-06-13 01:46:30 -07:00
parent 332369f1b0
commit 982d042a0f
+2 -1
View File
@@ -79,5 +79,6 @@ def run(args=None):
if __name__ == '__main__':
multiprocessing.freeze_support()
if sys.platform not in ('win32', 'darwin'):
multiprocessing.set_start_method('forkserver')
with suppress(RuntimeError):
multiprocessing.set_start_method('forkserver')
sys.exit(run())