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.
I have an schema:
class ExampleSchema(Schema): name: str value: int | float | bool
When I pass an integer or boolean value, marshmallow converts it into a float. Is there any clean way to correct this?