fix lint errors

This commit is contained in:
Nick Sweeting 2021-04-06 02:50:51 -04:00
parent e92db03f5f
commit 21bb84f627
2 changed files with 6 additions and 3 deletions

View file

@ -68,7 +68,7 @@ def run(*args, input=None, capture_output=True, timeout=None, check=False, text=
# force kill any straggler subprocesses that were forked from the main proc
try:
os.killpg(pgid, signal.SIGINT)
except Exception as e:
except Exception:
pass
return CompletedProcess(process.args, retcode, stdout, stderr)