diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1b7a2ea..7cd1982 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,16 +1,16 @@ repos: - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 9.0.1 hooks: - id: isort - stages: [commit] + stages: [pre-commit] args: ["--profile", "black"] - repo: https://github.com/PyCQA/autoflake - rev: v2.3.1 + rev: v2.4.0 hooks: - id: autoflake - stages: [commit] + stages: [pre-commit] args: [ "-ri", @@ -20,8 +20,8 @@ repos: "--remove-unused-variables", ] - - repo: https://github.com/psf/black - rev: 24.8.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.5.1 hooks: - id: black - stages: [commit] + stages: [pre-commit]