From 90e307986024960b51f5c65e55942eee4fc9a0ff Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 20:02:14 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=20[pre-commit.ci]=20pre-commit=20?= =?UTF-8?q?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.21 → v0.16.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.21...v0.16.2) - [github.com/igorshubovych/markdownlint-cli: v0.49.0 → v0.49.1](https://github.com/igorshubovych/markdownlint-cli/compare/v0.49.0...v0.49.1) --- .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 8259a0bc..98391378 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,14 +19,14 @@ repos: - id: end-of-file-fixer - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.21 + rev: v0.16.2 hooks: - id: ruff-check args: [--fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.49.0 + rev: v0.49.1 hooks: - id: markdownlint-fix args: [--config=pyproject.toml, --configPointer=/tool/markdownlint] From e1d83b6a235d513c8915edaa37cb7929eab5e4f1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 20:02:25 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repid/_runner.py | 2 +- repid/router.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/repid/_runner.py b/repid/_runner.py index 769bb738..e10e54b2 100644 --- a/repid/_runner.py +++ b/repid/_runner.py @@ -151,7 +151,7 @@ async def _actor_run( try: result = await actor.middleware_pipeline(leaf, message, actor) - except Exception as exc: # noqa: BLE001 + except Exception as exc: exception = exc logger.debug("actor.run.error", extra=logger_extra, exc_info=exc) else: diff --git a/repid/router.py b/repid/router.py index 2a59c79c..eb2ad6d8 100644 --- a/repid/router.py +++ b/repid/router.py @@ -93,9 +93,9 @@ class _RouterDefaults: channel: Channel | str | _NotSet middlewares: tuple[ActorMiddlewareT, ...] timeout: float | _NotSet - keep_alive: bool | float | None | _NotSet + keep_alive: bool | float | _NotSet | None run_in_process: bool | _NotSet - pool_executor: Executor | None | _NotSet + pool_executor: Executor | _NotSet | None converter: type[ConverterT] | _NotSet @classmethod