Skip to content

Commit eaad069

Browse files
committed
Fix format
1 parent c625a77 commit eaad069

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ def run_in_subprocess(func, *args, **kwargs):
156156
p.start()
157157
p.join()
158158
try:
159-
assert p.exitcode == 0, f"Subprocess {func.__name__!r} failed with exit code {p.exitcode}"
159+
assert p.exitcode == 0, (
160+
f"Subprocess {func.__name__!r} failed with exit code {p.exitcode}"
161+
)
160162
finally:
161163
p.close()

0 commit comments

Comments
 (0)