From 4c9eb57d577b991920c9179973d729deea47a9a2 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 29 Jan 2025 13:40:31 -0800 Subject: [PATCH] Fix mypy heisenfailure on Windows --- tests/reader_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/reader_test.py b/tests/reader_test.py index 9d7de60..569baf6 100644 --- a/tests/reader_test.py +++ b/tests/reader_test.py @@ -543,7 +543,7 @@ def lookup(pipe) -> None: except: pipe.send(0) finally: - if worker_class is self.mp.Process: + if worker_class is self.mp.Process: # type: ignore reader.close() pipe.close()