File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ repos:
1010 - id : validate-pyproject
1111
1212 - repo : https://github.com/astral-sh/ruff-pre-commit
13- rev : v0.11.12
13+ rev : v0.12.7
1414 hooks :
1515 - id : ruff
1616 args : [--fix, --unsafe-fixes]
1717 - id : ruff-format
1818
1919 - repo : https://github.com/pre-commit/mirrors-mypy
20- rev : v1.16 .0
20+ rev : v1.17 .0
2121 hooks :
2222 - id : mypy
2323 files : " ^src/"
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def _default_repr(field: fieldz.Field) -> str | None:
124124 if (factory := field .default_factory ) is not field .MISSING :
125125 if len (inspect .signature (factory ).parameters ) == 0 :
126126 with suppress (Exception ):
127- return repr (factory ())
127+ return repr (factory ()) # type: ignore[call-arg]
128128 return "<dynamic>"
129129 return None
130130
You can’t perform that action at this time.
0 commit comments