From 234f23677039dd28f5ace4f8585ab43f00af0494 Mon Sep 17 00:00:00 2001 From: clintval Date: Thu, 17 Oct 2024 13:54:08 -0700 Subject: [PATCH] fix: ensure ExecutableRunner stderr goes somewhere by default --- prymer/util/executable_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prymer/util/executable_runner.py b/prymer/util/executable_runner.py index e69500c..e2612ba 100644 --- a/prymer/util/executable_runner.py +++ b/prymer/util/executable_runner.py @@ -42,7 +42,7 @@ def __init__( command: list[str], stdin: int = subprocess.PIPE, stdout: int = subprocess.PIPE, - stderr: int = subprocess.PIPE, + stderr: int = subprocess.DEVNULL, ) -> None: if len(command) == 0: raise ValueError(f"Invocation must not be empty, received {command}")