Browse Source

Add PartialMessageable.__repr__

pull/7732/head
jack1142 3 years ago
committed by GitHub
parent
commit
d55f8d38ad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/channel.py

3
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

Loading…
Cancel
Save