From 81617b5b3f3ace492e2fd7bbd02cd5bf006caa93 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 18:14:26 +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.11.4 → v0.15.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.4...v0.15.0) - [github.com/astral-sh/uv-pre-commit: 0.6.12 → 0.10.0](https://github.com/astral-sh/uv-pre-commit/compare/0.6.12...0.10.0) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b7651282..354bc5bd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,13 +1,13 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.4 + rev: v0.15.0 hooks: - id: ruff args: [--fix, --unsafe-fixes] - id: ruff-format - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.6.12 + rev: 0.10.0 hooks: # Locks the uv.lock file based on our pyproject.toml files - id: uv-lock From 4508a97557ee7871cbd0b5b8cba2ba384472a1d0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 18:14:34 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- notifiers/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifiers/logging.py b/notifiers/logging.py index f08e3e37..7a2fc981 100644 --- a/notifiers/logging.py +++ b/notifiers/logging.py @@ -66,7 +66,7 @@ def handleError(self, record): :param record: :class:`logging.LogRecord` """ if logging.raiseExceptions: - t, v, tb = sys.exc_info() + t, v, _tb = sys.exc_info() if issubclass(t, NotifierException) and self.fallback: msg = f"Could not log msg to provider '{self.provider.name}'!\n{v}" self.fallback_defaults["message"] = msg