Browse Source
Add mention property to PartialMessageable
pull/9809/merge
Soheab
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
0 deletions
-
discord/channel.py
|
|
@ -3529,6 +3529,14 @@ class PartialMessageable(discord.abc.Messageable, Hashable): |
|
|
|
|
|
|
|
return Permissions.none() |
|
|
|
|
|
|
|
@property |
|
|
|
def mention(self) -> str: |
|
|
|
""":class:`str`: Returns a string that allows you to mention the channel. |
|
|
|
|
|
|
|
.. versionadded:: 2.5 |
|
|
|
""" |
|
|
|
return f'<#{self.id}>' |
|
|
|
|
|
|
|
def get_partial_message(self, message_id: int, /) -> PartialMessage: |
|
|
|
"""Creates a :class:`PartialMessage` from the message ID. |
|
|
|
|
|
|
|