From 257ea05b3c38a5c6ac10fef0dceddea6acab8dbf Mon Sep 17 00:00:00 2001 From: Patrick Wang Date: Mon, 30 Dec 2024 15:29:59 -0500 Subject: [PATCH] cmt --- util/shell.py | 3 +++ 1 file changed, 3 insertions(+) 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: