Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/safety_schemas/models/util.py
Iliyan Angelov 62c1fe5951 updates
2025-12-01 06:50:10 +02:00

9 lines
176 B
Python

from pydantic.version import VERSION as PYDANTIC_VERSION
def dict_dump(obj):
if PYDANTIC_VERSION.startswith("1."):
return obj.dict()
return obj.model_dump()