Skip to content

Commit

Permalink
fix: make User.last_login optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Libor Vaněk committed May 22, 2024
1 parent e0ac4fb commit 406b16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rossum_api/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class User:
date_joined: str
username: str
organization: str
last_login: str
last_login: Optional[str] = None
is_active: bool = True
email_verified: Optional[bool] = False
password: Optional[str] = None
Expand Down

0 comments on commit 406b16b

Please sign in to comment.