flask_sqlalchemy_rest
flask_sqlalchemy_rest copied to clipboard
Marshmallow 3.x Schemas are always strict
https://marshmallow.readthedocs.io/en/stable/upgrading.html
Schemas are always strict Two major changes were made to (de)serialization behavior: The strict parameter was removed. Schemas are always strict.
I ran into this on app.py when trying to pass strict=True. By leaving this out, I was able to move on with the video.
Ran into this same issue today. python 3.8.1
Thank for the fix
same issue i was facing..but this solved THANKS
thanks for the fix/info.
also ran into same issue thanks
In marshmallow version 3.0 or later The strict parameter was removed. Schemas are always strict. you don't need to use strict=True