diff --git a/src/schemas/users.py b/src/schemas/users.py index 7ae799b..6a020d3 100644 --- a/src/schemas/users.py +++ b/src/schemas/users.py @@ -6,8 +6,8 @@ class User(BaseModel): username: str hashed_password: str - high_scores: list[int] = [] - course_progresses: list[int] = [] + high_scores: list[] = [] + course_progresses: list[] = [] class Config: orm_mode = True