Browse Source

Add __repr__ to Interaction

pull/10082/head
owocado 3 months ago
committed by GitHub
parent
commit
7db391189d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      discord/interactions.py

3
discord/interactions.py

@ -192,6 +192,9 @@ class Interaction(Generic[ClientT]):
self.command_failed: bool = False
self._from_data(data)
def __repr__(self) -> str:
return f'<{self.__class__.__name__} id={self.id} type={self.type!r} guild_id={self.guild_id!r} user={self.user!r}>'
def _from_data(self, data: InteractionPayload):
self.id: int = int(data['id'])
self.type: InteractionType = try_enum(InteractionType, data['type'])

Loading…
Cancel
Save