Skip to content
This repository was archived by the owner on Sep 3, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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]
Loading