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.
0
1 parent 05f4cd7 commit b75bbebCopy full SHA for b75bbeb
1 file changed
libs/opsqueue_python/tests/conftest.py
@@ -1,5 +1,3 @@
1
-from curses import wrapper
2
-
3
import cbor2
4
import pickle
5
from contextlib import contextmanager, ExitStack
@@ -108,7 +106,9 @@ def opsqueue_service(
108
106
process.wait(timeout=1)
109
107
except subprocess.TimeoutExpired as exc:
110
process.kill()
111
- raise AssertionError("Opsqueue process locked up for more than 1 second on shutdown") from exc
+ raise AssertionError(
+ "Opsqueue process locked up for more than 1 second on shutdown"
+ ) from exc
112
113
finally:
114
if write_fd != -1:
0 commit comments