Browse Source

Change Interaction.user to not be Optional

This has potential to be a breaking change and Discord could definitely
royally screw this over in the future. However, as far as I can tell
every interaction has either a User or a Member so this change should
be kosher. I'm unaware of any interaction, even in the future, where
this is not true.

I hope these are not my famous last words.
pull/7492/head
Rapptz 3 years ago
parent
commit
41f2792ed9
  1. 4
      discord/interactions.py

4
discord/interactions.py

@ -94,7 +94,7 @@ class Interaction(Generic[ClientT]):
The channel ID the interaction was sent from.
application_id: :class:`int`
The application ID that the interaction was for.
user: Optional[Union[:class:`User`, :class:`Member`]]
user: Union[:class:`User`, :class:`Member`]
The user or member that sent the interaction.
message: Optional[:class:`Message`]
The message that sent this interaction.
@ -150,7 +150,7 @@ class Interaction(Generic[ClientT]):
except KeyError:
self.message = None
self.user: Optional[Union[User, Member]] = None
self.user: Union[User, Member] = MISSING
self._permissions: int = 0
# TODO: there's a potential data loss here

Loading…
Cancel
Save