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 b333f28 commit f0048ebCopy full SHA for f0048eb
bpython/test/test_args.py
@@ -53,8 +53,9 @@ def run_with_tty(command):
53
if p.poll() is None:
54
p.kill()
55
p.wait()
56
- if p.returncode:
57
- raise RuntimeError(f"Subprocess exited with {p.returncode}")
+
+ if p.returncode:
58
+ raise RuntimeError(f"Subprocess exited with {p.returncode}")
59
60
return (
61
result[master_stdout].decode(getpreferredencoding()),
0 commit comments