Skip to content

Commit

Permalink
making meta optional in User
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Faynzilberg authored and Sam Faynzilberg committed Feb 8, 2021
1 parent 5b98ac0 commit 21c666b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/routers/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class User(BaseModel):
location: str = None
email: str
picture: str = None
meta: Dict[Any, Any] = {}
meta: Optional[Dict[Any, Any]] = {}
class Config:
orm_mode = True

Expand Down

0 comments on commit 21c666b

Please sign in to comment.