From ea5adca079e66204e59befdf6bf373a3b5baf7af Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 23 Apr 2021 17:16:39 -0700 Subject: [PATCH] Minor editing. --- exec_utils.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/exec_utils.py b/exec_utils.py index 0ed3601..c669f54 100644 --- a/exec_utils.py +++ b/exec_utils.py @@ -25,12 +25,14 @@ def run_silently(command: str) -> None: """Run a command silently but raise subprocess.CalledProcessError if it fails.""" subprocess.run( - command, shell=True, stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL, - capture_output=False, check=True + command, shell=True, stderr=subprocess.DEVNULL, + stdout=subprocess.DEVNULL, capture_output=False, check=True ) -def cmd_in_background(command: str, *, silent: bool = False) -> subprocess.Popen: +def cmd_in_background( + command: str, *, silent: bool = False +) -> subprocess.Popen: args = shlex.split(command) if silent: return subprocess.Popen(args, -- 2.45.2