diff options
| author | Sebastian Law <[email protected]> | 2021-03-29 20:52:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-29 23:52:14 -0400 |
| commit | d6501159e7b765a526c94b4d83524c127ad4b22f (patch) | |
| tree | 3bf20620c7ee6d9e5851e6f5a2b5009c2caf62c6 /discord/ext/commands/context.py | |
| parent | [commands] Add support for stripping whitespace after the prefix (diff) | |
| download | discord.py-d6501159e7b765a526c94b4d83524c127ad4b22f.tar.xz discord.py-d6501159e7b765a526c94b4d83524c127ad4b22f.zip | |
[docs] copy signature from overridden and inherited methods
Diffstat (limited to 'discord/ext/commands/context.py')
| -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__ |