Fixed PlayPlayer wrong type assignment

This commit is contained in:
Yarne Coppens 2024-08-02 11:51:25 +02:00
parent b820f3b78c
commit 56e2325740

View file

@ -5,8 +5,8 @@ class PlayPlayer(BaseModel):
name: str name: str
username: str username: str
score: float score: float
first_play = bool first_play : bool
has_won = bool has_won : bool
class Play(BaseModel): class Play(BaseModel):
boardgame_id: int boardgame_id: int