MasoniteFramework / orm

Masonite ORM is a beautiful Python ORM. It's also a nearly drop in replacement of the Orator ORM
https://orm.masoniteproject.com
MIT License
160 stars 47 forks source link

Fixed json serialization error if model contains pbjects that are not serializable #841

Closed circulon closed 1 year ago

circulon commented 1 year ago

This fixes the exception when a non serializable object eg Decimal() is an attribute value.

A (possibly) better option would be to use the simplejson package for maximum compatibility. But that is another conversation ;)