Skip to content

Commit

Permalink
Update pycln to v1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hadialqattan committed May 17, 2022
1 parent 34b9ff2 commit 1e38365
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ repos:
exclude: ^(install|get)-poetry.py$

- repo: https://github.com/hadialqattan/pycln
rev: v1.2.4
rev: v1.2.5
hooks:
- id: pycln
args: [--all]
Expand Down
4 changes: 2 additions & 2 deletions tests/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@


try:
import zipp
import zipp # nopycln: import
except ImportError:
import zipfile as zipp # noqa: F401, TC002

try:
from typing import Protocol
from typing import Protocol # nopycln: import
except ImportError:
from typing_extensions import Protocol # noqa: F401, TC002

Expand Down

0 comments on commit 1e38365

Please sign in to comment.