Skip to content

Commit

Permalink
Merge pull request #265 from lmoj/optional-last_sign_in_at
Browse files Browse the repository at this point in the history
optional last_sign_in_at in UserIdentity type
  • Loading branch information
J0 committed May 22, 2023
2 parents 633c4ab + 6fef36a commit 99d4567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gotrue/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class UserIdentity(BaseModel):
identity_data: Dict[str, Any]
provider: str
created_at: datetime
last_sign_in_at: datetime
last_sign_in_at: Union[datetime, None] = None
updated_at: Union[datetime, None] = None


Expand Down

0 comments on commit 99d4567

Please sign in to comment.