From 3c49985a83bedd9a1231dfd5f80c7bffabe12523 Mon Sep 17 00:00:00 2001 From: lvrossem Date: Tue, 28 Mar 2023 13:25:02 +0200 Subject: [PATCH] Fix type error --- src/schemas/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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