diff --git a/python/binharness/localenvironment.py b/python/binharness/localenvironment.py index f5a64f6..007ded4 100644 --- a/python/binharness/localenvironment.py +++ b/python/binharness/localenvironment.py @@ -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