Krzysztof Nerwiński
Results
1
issues of
Krzysztof Nerwiński
no warning on instantiation of dataclass when fields, that define default as Field(...), are omitted
When instantiating a pydantic dataclass with any field configured with default values as `Field(...)` there are not warnings if value is omitted. Runtime works like it should. ``` from dataclasses...