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 0806d73 commit 8b87bf4Copy full SHA for 8b87bf4
webknossos/webknossos/__init__.py
@@ -35,5 +35,8 @@
35
from .version import __version__ as current_version
36
37
if not current_version == "0.0.0":
38
- # Schedule the version check to run non-blocking in a background thread
39
- check_version_in_background(current_version)
+ import multiprocessing
+
40
+ if multiprocessing.parent_process() is None:
41
+ # Schedule the version check to run non-blocking in a background thread
42
+ check_version_in_background(current_version)
0 commit comments