diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 53d1960..2b20451 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.6 + rev: v0.9.1 hooks: - id: ruff name: ruff lint diff --git a/conda_subprocess/interface.py b/conda_subprocess/interface.py index cfe4b90..6f8aa9e 100644 --- a/conda_subprocess/interface.py +++ b/conda_subprocess/interface.py @@ -142,7 +142,7 @@ def run( if capture_output: if kwargs.get("stdout") is not None or kwargs.get("stderr") is not None: raise ValueError( - "stdout and stderr arguments may not be used " "with capture_output." + "stdout and stderr arguments may not be used with capture_output." ) kwargs["stdout"] = PIPE kwargs["stderr"] = PIPE