diff --git a/util/shell.py b/util/shell.py index 017d53e9..b4d69cbd 100644 --- a/util/shell.py +++ b/util/shell.py @@ -11,6 +11,9 @@ def subprocess_run( check_returncode: bool = True, verbose: bool = True, ) -> subprocess.Popen[str]: + """ + We use this instead of subprocess.run() because of the cwd option. + """ cwd_msg = f"(cwd: {cwd if cwd is not None else os.getcwd()})" if verbose: