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 7ea4657 commit 50dc43aCopy full SHA for 50dc43a
1 file changed
mypy/build.py
@@ -445,10 +445,10 @@ def connect(wc: WorkerClient, data: bytes) -> None:
445
finally:
446
# In case of an early crash it is better to wait for workers to become ready, and
447
# shut them down cleanly. Otherwise, they will linger until connection timeout.
448
- if options_data is not None:
449
- os.unlink(options_data)
450
for thread in connect_threads:
451
thread.join()
+ if options_data is not None:
+ os.unlink(options_data)
452
for worker in workers:
453
if not worker.connected:
454
continue
0 commit comments