From 7db391189db0e74d5b640b319b14c3eb00f1f0f2 Mon Sep 17 00:00:00 2001 From: owocado <24418520+owocado@users.noreply.github.com> Date: Thu, 16 Jan 2025 05:31:42 +0530 Subject: [PATCH] Add __repr__ to Interaction --- discord/interactions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/interactions.py b/discord/interactions.py index e0fb7ed86..49bfbfb07 100644 --- a/discord/interactions.py +++ b/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'])