core/utils/encoders.py
Untone 247fc98760
All checks were successful
Deploy on push / deploy (push) Successful in 1m16s
cachedep-fix+orjson+fmt
2025-03-20 11:55:21 +03:00

11 lines
219 B
Python

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