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
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue