diff options
Diffstat (limited to 'discord/ext')
| -rw-r--r-- | discord/ext/commands/context.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 39e5d5cd..8df4f730 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -335,7 +335,6 @@ class Context(discord.abc.Messageable): except CommandError as e: await cmd.on_help_command_error(self, e) + @discord.utils.copy_doc(discord.Message.reply) async def reply(self, content=None, **kwargs): return await self.message.reply(content, **kwargs) - - reply.__doc__ = discord.Message.reply.__doc__ |