Skip to content

Commit

Permalink
Update basegroup.py (#118)
Browse files Browse the repository at this point in the history
Added missing type to requester attribute
  • Loading branch information
Jodenee authored May 9, 2024
1 parent 03659a3 commit 4e56538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roblox/bases/basegroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class JoinRequest:
def __init__(self, client: Client, data: dict, group: Union[BaseGroup, int]):
self._client: Client = client
self.created: datetime = parse(data["created"])
self.requester = PartialUser(client=self._client, data=data["requester"])
self.requester: PartialUser = PartialUser(client=self._client, data=data["requester"])
self.group: BaseGroup
if isinstance(group, int):
self.group = BaseGroup(client=self._client, group_id=group)
Expand Down

0 comments on commit 4e56538

Please sign in to comment.