Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 27, 2024
1 parent 4e8254f commit 1693944
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/binharness/localenvironment.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ def run_command(
subprocess is started with `subprocess.Popen` and the arguments are
passed directly to that function.
"""
process = LocalProcess(self, normalize_args(*args), env=env, cwd=cwd, use_pty=pty)
process = LocalProcess(
self, normalize_args(*args), env=env, cwd=cwd, use_pty=pty
)
self._managed_processes[process.pid] = process
return process

Expand Down

0 comments on commit 1693944

Please sign in to comment.