We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad585d commit 270aee7Copy full SHA for 270aee7
cadwyn/_render.py
@@ -146,7 +146,13 @@ def _generate_field_ast(field: PydanticFieldWrapper) -> ast.Call:
146
func=ast.Name("Field"),
147
args=[],
148
keywords=[
149
- ast.keyword(arg=attr, value=ast.parse(get_fancy_repr(attr_value), mode="eval").body) # pyright: ignore
+ ast.keyword(
150
+ arg=attr,
151
+ value=ast.parse(
152
+ get_fancy_repr(attr_value),
153
+ mode="eval",
154
+ ).body, # pyright: ignore # noqa: PGH003
155
+ )
156
for attr, attr_value in field.passed_field_attributes.items()
157
],
158
)
0 commit comments