Compare commits

..

1 Commits

Author SHA1 Message Date
86d48d0d1c refactor(base): replace to_camel to to_camel from pydantic 2025-05-21 15:49:23 +05:00

View File

@ -6,5 +6,5 @@ class Base(BaseModel):
model_config = ConfigDict(
from_attributes=True,
alias_generator=to_camel,
populate_by_name=True
populate_by_name=True,
)