From 52495f83f27998ac223f9fb4878aada15f943327 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 04:57:46 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- meltano/edk/process.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meltano/edk/process.py b/meltano/edk/process.py index 7361510..8cb9fe9 100644 --- a/meltano/edk/process.py +++ b/meltano/edk/process.py @@ -76,7 +76,7 @@ def run( to override these you're likely better served using `subprocess.run` directly. Lastly note that this method is blocking AND `subprocess.run` is called with - `check=True` and `raise_error=True`. This means that if the subprocess + `check=True` and `raise_error=True`. This means that if the subprocess fails a `CalledProcessError` will be raised. Args: @@ -84,7 +84,7 @@ def run( stdout: The stdout stream to use. stderr: The stderr stream to use. text: If true, decode stdin, stdout and stderr using the system default. - raise_error: If true, decode stdin, stdout and stderr using the + raise_error: If true, decode stdin, stdout and stderr using the system default. **kwargs: Additional keyword arguments to pass to subprocess.run. @@ -175,7 +175,7 @@ def run_and_log( Args: sub_command: The subcommand to run. - raise_error: If True (default), raises a CalledProcessError if + raise_error: If True (default), raises a CalledProcessError if the subprocess fails. *args: The arguments to pass to the subprocess.