Skip to content

Commit ace9cb5

Browse files
committed
ruff
1 parent 99960df commit ace9cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qbpm/launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def launch(foreground: bool, args: list[str]) -> bool:
2424
p = subprocess.Popen(args, stdout=subprocess.DEVNULL, stderr=subprocess.PIPE)
2525
try:
2626
# give qb a chance to validate input before returning to shell
27-
stdout, stderr = p.communicate(timeout=0.1)
27+
_stdout, stderr = p.communicate(timeout=0.1)
2828
print(stderr.decode(errors="ignore"), end="")
2929
except subprocess.TimeoutExpired:
3030
pass

0 commit comments

Comments
 (0)