Fixed PlayPlayer wrong type assignment
This commit is contained in:
parent
b820f3b78c
commit
56e2325740
1 changed files with 2 additions and 2 deletions
|
|
@ -5,8 +5,8 @@ class PlayPlayer(BaseModel):
|
|||
name: str
|
||||
username: str
|
||||
score: float
|
||||
first_play = bool
|
||||
has_won = bool
|
||||
first_play : bool
|
||||
has_won : bool
|
||||
|
||||
class Play(BaseModel):
|
||||
boardgame_id: int
|
||||
|
|
|
|||
Loading…
Reference in a new issue