From 2bd5930faf1429c39235dac7c3ff54a25c043a3f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 21:52:55 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.15.9 → v0.16.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.9...v0.16.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 0daf9719..118c685f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: - id: no-commit-to-branch args: [--branch, develop, --branch, main] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.9" + rev: "v0.16.0" hooks: - id: ruff-check args: ["--fix"] From b72b66dd3a8c84884fc656b25f8979d0d00183df Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 21:53:08 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/ruff_sync/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ruff_sync/constants.py b/src/ruff_sync/constants.py index 872c0738..99a58d82 100644 --- a/src/ruff_sync/constants.py +++ b/src/ruff_sync/constants.py @@ -129,7 +129,7 @@ def get_canonical(cls, key: str) -> str: def resolve_defaults( branch: str | MissingType, - path: str | None | MissingType, + path: str | MissingType | None, exclude: Iterable[str] | MissingType, ) -> tuple[str, str | None, Iterable[str]]: """Resolve MISSING sentinel values to their effective defaults.