For real this time, it really works

This commit is contained in:
lvrossem
2023-03-28 13:41:58 -06:00
parent b7f41e8596
commit 5eba17f793
3 changed files with 8 additions and 7 deletions

View File

@@ -7,8 +7,8 @@ class User(BaseModel):
username: str
hashed_password: str
high_scores: List[int] = []
course_progresses: List[int] = []
high_score_ids: List[int] = []
course_progress_ids: List[int] = []
class Config:
orm_mode = True