Working get request for users

This commit is contained in:
lvrossem
2023-03-28 13:01:20 -06:00
parent 252d844446
commit b7f41e8596
2 changed files with 16 additions and 11 deletions

View File

@@ -6,12 +6,7 @@ class HighScore(BaseModel):
high_score_id: int
score_value: float
minigame: MinigameEnum
owner_id: "User"
owner_id: int
class Config:
orm_mode = True
# It's ugly, but I have no choice
from users import User
HighScore.update_forward_refs()