We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d0b24 commit c5ba1b9Copy full SHA for c5ba1b9
src/libvcs/_internal/dataclasses.py
@@ -76,7 +76,7 @@ def __repr__(self) -> str:
76
"""Omit default fields in object representation."""
77
nodef_f_vals = (
78
(f.name, attrgetter(f.name)(self))
79
- for f in dataclasses.fields(self)
+ for f in dataclasses.fields(self) # type:ignore
80
if attrgetter(f.name)(self) != f.default
81
)
82
0 commit comments