mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
mypy: Remove superfluous older 'type: ignore' annotations.
This commit is contained in:
committed by
Tim Abbott
parent
67f1a72aae
commit
b782db48e1
@@ -29,7 +29,7 @@ def run_parallel(job, data, threads=6):
|
||||
except OSError as e:
|
||||
if e.errno != errno.EBADF:
|
||||
raise
|
||||
sys.stdin = open("/dev/null", "r") # type: ignore # py2 and py3 stubs are not compatible
|
||||
sys.stdin = open("/dev/null", "r")
|
||||
os._exit(job(item))
|
||||
|
||||
pids[pid] = item
|
||||
|
||||
Reference in New Issue
Block a user