Skip to content

Commit

Permalink
Bump ruff from 0.0.281 to 0.0.288 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReK42 authored Sep 11, 2023
2 parents 71efdad + f02d9e9 commit 3036207
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
repos:
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
rev: v1.5.1
hooks:
- id: mypy
language_version: python3.11
Expand All @@ -10,13 +10,13 @@ repos:
- types-PyYAML
- types-passlib
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.281
rev: v0.0.288
hooks:
- id: ruff
language_version: python3.11
files: src
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
language_version: python3.11
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ passhash = "passhash:main"
tests = [
"black == 23.9.1",
"mypy == 1.5.1",
"ruff == 0.0.281",
"ruff == 0.0.288",
"types-PyYAML == 6.0.12.11",
"types-passlib == 1.7.7.13",
]
Expand Down
2 changes: 1 addition & 1 deletion src/passhash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def export(defn: Any) -> None: # noqa: ANN401
"""Module-level export decorator."""
globals()[defn.__name__] = defn
__all__.append(defn.__name__)
__all__.append(defn.__name__) # noqa: PYI056
return defn


Expand Down

0 comments on commit 3036207

Please sign in to comment.