jack1142
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
discord/channel.py
|
@ -2151,6 +2151,9 @@ class PartialMessageable(discord.abc.Messageable, Hashable): |
|
|
self.id: int = id |
|
|
self.id: int = id |
|
|
self.type: Optional[ChannelType] = type |
|
|
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: |
|
|
async def _get_channel(self) -> PartialMessageable: |
|
|
return self |
|
|
return self |
|
|
|
|
|
|
|
|