Skip to content

Commit 954bb37

Browse files
type fix
1 parent 7c96c59 commit 954bb37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/workos/types/user_management/organization_membership.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class BaseOrganizationMembership(WorkOSModel):
1414
user_id: str
1515
organization_id: str
1616
status: LiteralOrUntyped[OrganizationMembershipStatus]
17-
custom_attributes: Optional[Mapping[str, Any]] = None
1817
created_at: str
1918
updated_at: str
2019

@@ -28,4 +27,4 @@ class OrganizationMembership(BaseOrganizationMembership):
2827

2928
role: OrganizationMembershipRole
3029
roles: Optional[Sequence[OrganizationMembershipRole]] = None
31-
custom_attributes: Optional[Mapping[str, Any]] = {}
30+
custom_attributes: Mapping[str, Any] = {}

0 commit comments

Comments
 (0)