Fix type error

This commit is contained in:
lvrossem
2023-03-28 13:25:02 +02:00
parent fc63176642
commit 3c49985a83

View File

@@ -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