From 791e44dfca588979c02fca01cce2b0b0630781bf Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 22:09:35 +0000 Subject: [PATCH 1/2] :arrow_up: auto update by pre-commit hooks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/hadialqattan/pycln: v2.4.0 → v2.6.0](https://github.com/hadialqattan/pycln/compare/v2.4.0...v2.6.0) - [github.com/pycqa/isort: 5.13.2 → 7.0.0](https://github.com/pycqa/isort/compare/5.13.2...7.0.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 24.10.0 → 25.11.0](https://github.com/psf/black-pre-commit-mirror/compare/24.10.0...25.11.0) --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cd59492..4d66ebc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,20 +7,20 @@ ci: autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks" repos: - repo: https://github.com/hadialqattan/pycln - rev: v2.4.0 + rev: v2.6.0 hooks: - id: pycln args: [--config, pyproject.toml] stages: [pre-commit] - repo: https://github.com/pycqa/isort - rev: 5.13.2 + rev: 7.0.0 hooks: - id: isort stages: [pre-commit] - - repo: https://github.com/psf/black - rev: 24.10.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 25.11.0 hooks: - id: black stages: [pre-commit] From 293d3e80ea5553d714e4940e747e630ac3b71db9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 22:10:52 +0000 Subject: [PATCH 2/2] :rotating_light: auto fix by pre-commit hooks --- nonebot_plugin_orm/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonebot_plugin_orm/__main__.py b/nonebot_plugin_orm/__main__.py index 777d254..dd3c07e 100644 --- a/nonebot_plugin_orm/__main__.py +++ b/nonebot_plugin_orm/__main__.py @@ -69,7 +69,7 @@ def orm(ctx: click.Context, config: Path, name: str, **_) -> None: def update_cmd_opts( - f: Callable[Concatenate[AlembicConfig, _P], _R] + f: Callable[Concatenate[AlembicConfig, _P], _R], ) -> Callable[_P, _R]: @wraps(f) @click.pass_context