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 99960df commit ace9cb5Copy full SHA for ace9cb5
src/qbpm/launch.py
@@ -24,7 +24,7 @@ def launch(foreground: bool, args: list[str]) -> bool:
24
p = subprocess.Popen(args, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
25
try:
26
# give qb a chance to validate input before returning to shell
27
- stdout, stderr = p.communicate(timeout=0.1)
+ _stdout, stderr = p.communicate(timeout=0.1)
28
print(stderr.decode(errors="ignore"), end="")
29
except subprocess.TimeoutExpired:
30
pass
0 commit comments