Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
Make outgoing_request field optional in FriendshipStatus. Fixes #142
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Nov 10, 2023
1 parent a59a6de commit ebb3942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mauigpapi/types/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
@dataclass(kw_only=True)
class FriendshipStatus(SerializableAttrs):
following: bool
outgoing_request: bool
is_bestie: bool
is_restricted: bool
blocking: Optional[bool] = None
incoming_request: Optional[bool] = None
outgoing_request: Optional[bool] = None
is_private: Optional[bool] = None


Expand Down

0 comments on commit ebb3942

Please sign in to comment.