From d55f8d38ad8ba015ad078fbaced3f46b47f03979 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Sun, 20 Mar 2022 07:58:29 +0100 Subject: [PATCH] Add PartialMessageable.__repr__ --- discord/channel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/channel.py b/discord/channel.py index 6a3d0cda8..cbb9437c8 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -2151,6 +2151,9 @@ class PartialMessageable(discord.abc.Messageable, Hashable): self.id: int = id self.type: Optional[ChannelType] = type + def __repr__(self) -> str: + return f'<{self.__class__.__name__} id={self.id} type={self.type!r}>' + async def _get_channel(self) -> PartialMessageable: return self