Skip to content

Commit

Permalink
fix(pre-commit-hooks): update black to 22.3.0
Browse files Browse the repository at this point in the history
An incompatibility between "black" and its dependency "click" was fixed in black v22.3.0.
Ref. https://stackoverflow.com/a/71674345
  • Loading branch information
asmundstavdahl committed Jan 23, 2023
1 parent 49dfb4f commit 4ddf294
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 19.3b0
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
- id: black
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/regebro/pyroma
rev: '3.2'
- id: flake8
- repo: https://github.com/regebro/pyroma
rev: "3.2"
hooks:
- id: pyroma
- id: pyroma

0 comments on commit 4ddf294

Please sign in to comment.