From 52cd158509f8b47a041ac66b94bce9fbf763c97d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 Sep 2025 18:01:32 +0000 Subject: [PATCH 1/2] chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.13.0 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 03ddcdf2..6512054e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,7 +18,7 @@ repos: - id: check-added-large-files - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.12 + rev: v0.13.0 hooks: - id: ruff args: [--fix] From e98fb8c834e645961bf7a58a6cce797eae2fd7de Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 10 Sep 2025 18:01:50 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/unit/test_subprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_subprocess.py b/tests/unit/test_subprocess.py index 89679444..5e4e0bb5 100644 --- a/tests/unit/test_subprocess.py +++ b/tests/unit/test_subprocess.py @@ -71,7 +71,7 @@ def test_git_env(mocker, environ): git.commit(env={"C": "E", "F": "G"}) - _, kwargs = run.call_args_list[0] + _, _kwargs = run.call_args_list[0] env = run.call_args_list[0].kwargs["env"] assert env["A"] == "B"