Browse Source
Add Reaction into typehint of add_reaction()
pull/8048/head
Ryan H
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/message.py
|
|
@ -974,7 +974,7 @@ class PartialMessage(Hashable): |
|
|
|
# pinned exists on PartialMessage for duck typing purposes |
|
|
|
self.pinned = False |
|
|
|
|
|
|
|
async def add_reaction(self, emoji: EmojiInputType, /) -> None: |
|
|
|
async def add_reaction(self, emoji: Union[EmojiInputType, Reaction], /) -> None: |
|
|
|
"""|coro| |
|
|
|
|
|
|
|
Adds a reaction to the message. |
|
|
|