From 729a2d0a40c352386abdf244e880e89e4e80bca9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 18:09:50 +0300 Subject: [PATCH] chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.0.292 (#69) * chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.0.292 * chore: fix lint issues --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Konstantinos Smanis --- .pre-commit-config.yaml | 2 +- tests/conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9b141b6..e24750d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -61,7 +61,7 @@ repos: - id: poetry-lock args: ["--no-update"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.291 + rev: v0.0.292 hooks: - id: ruff args: ["--fix", "--exit-non-zero-on-fix"] diff --git a/tests/conftest.py b/tests/conftest.py index a0203ef..3830ef8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -68,7 +68,7 @@ def git_superproject_factory( # type: ignore[no-any-unimported] git_identity: pygit2.Signature, git_repo_factory: Callable[[Path], pygit2.Repository], ) -> Callable[[Path], pygit2.Repository]: - def git_superproject(path: Path) -> pygit2.Repository: # type: ignore[no-any-unimported] # noqa: E501 + def git_superproject(path: Path) -> pygit2.Repository: # type: ignore[no-any-unimported] superproject = git_repo_factory(path / "superproject") submodule = git_repo_factory(path / "submodule")