Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 24.8.0 → 24.10.0](psf/black@24.8.0...24.10.0)
- [github.com/astral-sh/ruff-pre-commit: v0.6.8 → v0.6.9](astral-sh/ruff-pre-commit@v0.6.8...v0.6.9)
  • Loading branch information
pre-commit-ci[bot] authored Oct 7, 2024
1 parent 527cb88 commit 49266b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ default_language_version:
python: python3
files: '.py'
exclude: ".env,.yml,.gitignore,.git,.md,.txt"
default_stages: [push, commit]
default_stages: [Nonepre-pushNone, Nonepre-commitNone]
repos:
- repo: https://github.com/PyCQA/bandit
rev: 1.7.10
hooks:
- id: bandit
args: ["-c", "pyproject.toml"]
name: Bandit
stages: [commit]
stages: [Nonepre-commitNone]
additional_dependencies: ["bandit[toml]"]

- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black
name: Black
stages: [commit]
stages: [Nonepre-commitNone]

- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
Expand All @@ -27,10 +27,10 @@ repos:
args: ["--in-place", "--remove-unused-variables", "--recursive"]
name: AutoFlake
description: "Format with AutoFlake"
stages: [commit]
stages: [Nonepre-commitNone]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.8
rev: v0.6.9
hooks:
- id: ruff
name: Ruff
Expand All @@ -42,6 +42,6 @@ repos:
- id: isort
name: ISort
description: "Format with Isort"
stages: [commit]
stages: [Nonepre-commitNone]


0 comments on commit 49266b7

Please sign in to comment.