Skip to content

Commit 843e6b9

Browse files
ci(pre-commit.ci): autoupdate (pyapp-kit#8)
* ci(pre-commit.ci): autoupdate updates: - https://github.com/charliermarsh/ruff-pre-commithttps://github.com/astral-sh/ruff-pre-commit - [github.com/astral-sh/ruff-pre-commit: v0.0.290 → v0.0.292](astral-sh/ruff-pre-commit@v0.0.290...v0.0.292) * style(pre-commit.ci): auto fixes [...] --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent aada7e1 commit 843e6b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repos:
99
hooks:
1010
- id: validate-pyproject
1111

12-
- repo: https://github.com/charliermarsh/ruff-pre-commit
13-
rev: v0.0.290
12+
- repo: https://github.com/astral-sh/ruff-pre-commit
13+
rev: v0.0.292
1414
hooks:
1515
- id: ruff
1616
args: [--fix]

src/fieldz/_repr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def origin_is_union(tp: type[Any] | None) -> bool:
3232
def origin_is_union(tp: type[Any] | None) -> bool:
3333
return tp is typing.Union or tp is types.UnionType # type: ignore
3434

35-
WithArgsTypes = (typing._GenericAlias, types.GenericAlias, types.UnionType) # type: ignore[attr-defined] # noqa: E501
35+
WithArgsTypes = (typing._GenericAlias, types.GenericAlias, types.UnionType) # type: ignore[attr-defined]
3636

3737

3838
class PlainRepr(str):

0 commit comments

Comments
 (0)