Browse Source
Fix bug in PartialMessageable.trigger_typing
pull/7566/head
Haruka
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
discord/channel.py
|
|
@ -2142,12 +2142,11 @@ class PartialMessageable(discord.abc.Messageable, Hashable): |
|
|
|
|
|
|
|
def __init__(self, state: ConnectionState, id: int, type: Optional[ChannelType] = None): |
|
|
|
self._state: ConnectionState = state |
|
|
|
self._channel: Object = Object(id=id) |
|
|
|
self.id: int = id |
|
|
|
self.type: Optional[ChannelType] = type |
|
|
|
|
|
|
|
async def _get_channel(self) -> Object: |
|
|
|
return self._channel |
|
|
|
async def _get_channel(self) -> PartialMessageable: |
|
|
|
return self |
|
|
|
|
|
|
|
def get_partial_message(self, message_id: int, /) -> PartialMessage: |
|
|
|
"""Creates a :class:`PartialMessage` from the message ID. |
|
|
|