From 06ae406a41448560b6a1cfcca0b22aee897d9bfc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:35:15 +0200 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#231) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Randy Döring <30527984+radoering@users.noreply.github.com> --- .pre-commit-config.yaml | 6 +++--- tests/types.py | 6 ++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 42db097..be6fbc7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,12 +19,12 @@ repos: - id: debug-statements - id: check-docstring-first - - repo: https://github.com/psf/black - rev: 23.7.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 23.9.1 hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.285 + rev: v0.0.290 hooks: - id: ruff diff --git a/tests/types.py b/tests/types.py index 90c325a..1842aec 100644 --- a/tests/types.py +++ b/tests/types.py @@ -20,8 +20,7 @@ def __call__( installer: Installer | None = None, executor: Executor | None = None, environment: Env | None = None, - ) -> CommandTester: - ... + ) -> CommandTester: ... class ProjectFactory(Protocol): @@ -33,5 +32,4 @@ def __call__( pyproject_content: str | None = None, poetry_lock_content: str | None = None, install_deps: bool = True, - ) -> Poetry: - ... + ) -> Poetry: ...