Browse Source
Pass BotT type argument to DeferTyping
pull/10111/head
Willi
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
discord/ext/commands/context.py
|
|
@ -751,7 +751,7 @@ class Context(discord.abc.Messageable, Generic[BotT]): |
|
|
|
else: |
|
|
|
return await self.send(content, **kwargs) |
|
|
|
|
|
|
|
def typing(self, *, ephemeral: bool = False) -> Union[Typing, DeferTyping]: |
|
|
|
def typing(self, *, ephemeral: bool = False) -> Union[Typing, DeferTyping[BotT]]: |
|
|
|
"""Returns an asynchronous context manager that allows you to send a typing indicator to |
|
|
|
the destination for an indefinite period of time, or 10 seconds if the context manager |
|
|
|
is called using ``await``. |
|
|
|