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?