diff options
Diffstat (limited to 'discord/ext/commands/context.py')
| -rw-r--r-- | discord/ext/commands/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 0f3c546e..c5367c24 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -143,7 +143,7 @@ class Context(discord.abc.Messageable): ret = await command.callback(*arguments, **kwargs) return ret - async def reinvoke(self, *, call_hooks=False, restart=True): + async def reinvoke(self, *, call_hooks: bool = False, restart: bool = True): """|coro| Calls the command again. |