aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/context.py
diff options
context:
space:
mode:
authorSebastian Law <[email protected]>2021-03-29 20:52:14 -0700
committerGitHub <[email protected]>2021-03-29 23:52:14 -0400
commitd6501159e7b765a526c94b4d83524c127ad4b22f (patch)
tree3bf20620c7ee6d9e5851e6f5a2b5009c2caf62c6 /discord/ext/commands/context.py
parent[commands] Add support for stripping whitespace after the prefix (diff)
downloaddiscord.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.py3
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__