Removed superfluous response models

This commit is contained in:
Marta Borgia Leiva 2026-01-26 18:05:51 +01:00
parent 170446fcc2
commit 3d8edb8fa1
Signed by: a-mayb3
GPG key ID: 293AAC4FED165CE3
3 changed files with 0 additions and 14 deletions

View file

@ -7,8 +7,3 @@ class UserBase(BaseModel):
id: int
name: str
email: str
class UserList(BaseModel):
model_config = ConfigDict(from_attributes=True)
users: List[UserBase]