Skip to content

Commit 2834d66

Browse files
style(pre-commit.ci): auto fixes [...]
1 parent 9983e0f commit 2834d66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fieldz/adapters/_attrs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def fields(class_or_instance: Any | type) -> tuple[Field, ...]:
6262
)
6363
fields: list[Field] = []
6464
for f in attrs.fields(cls):
65-
f = cast(attrs.Attribute, f)
65+
f = cast("attrs.Attribute", f)
6666
default = Field.MISSING if f.default is attrs.NOTHING else f.default
6767
default_factory: (
6868
Callable[[], Any] | Callable[[Any], Any] | Literal[_MISSING_TYPE.MISSING]

0 commit comments

Comments
 (0)