move pyupgrade before black

This commit is contained in:
pacrob
2023-12-09 12:12:52 -07:00
committed by Paul Robinson
parent 621cd56059
commit cb3f556315

View File

@ -7,6 +7,11 @@ repos:
- id: check-toml - id: check-toml
- id: end-of-file-fixer - id: end-of-file-fixer
- id: trailing-whitespace - id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 23.9.1 rev: 23.9.1
hooks: hooks:
@ -43,8 +48,3 @@ repos:
hooks: hooks:
- id: mypy - id: mypy
exclude: tests/ exclude: tests/
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py38-plus]