sergue1

Results 2 comments of sergue1

@sydney-runkle , I am a bit confused that 313 line is uncovered: revert it and the newly added test will fail as expected. May be it is an issue with...

Btw since Pydantic schema generator does not mark fields with `default` or `default_factory` as required, there seems to be a simple workaround for the issue: ```python class FormFieldsBool(BaseModel): is_foo: bool...