core/utils/encoders.py
Untone a4a3c35f4d
All checks were successful
Deploy on push / deploy (push) Successful in 46s
lesscode
2025-03-20 12:04:47 +03:00

10 lines
226 B
Python

from decimal import Decimal
from json import JSONEncoder
class CustomJSONEncoder(JSONEncoder):
def default(self, obj):
if isinstance(obj, Decimal):
return str(obj)
return super().default(obj)