Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 99d4567

Browse files
authored
Merge pull request #265 from lmoj/optional-last_sign_in_at
optional last_sign_in_at in UserIdentity type
2 parents 633c4ab + 6fef36a commit 99d4567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gotrue/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class UserIdentity(BaseModel):
120120
identity_data: Dict[str, Any]
121121
provider: str
122122
created_at: datetime
123-
last_sign_in_at: datetime
123+
last_sign_in_at: Union[datetime, None] = None
124124
updated_at: Union[datetime, None] = None
125125

126126

0 commit comments

Comments
 (0)