aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-04-19 18:05:29 -0400
committerRapptz <[email protected]>2019-04-19 18:29:12 -0400
commit4ca934eb22432f601a2349a94b41b341938f6966 (patch)
tree827a0784d16f91c92fb302f30c236656e05a64e5
parent[commands] Allow passing cls to the commands.group decorator (diff)
downloaddiscord.py-4ca934eb22432f601a2349a94b41b341938f6966.tar.xz
discord.py-4ca934eb22432f601a2349a94b41b341938f6966.zip
[commands] Missing an extra ] in the documented return type.
-rw-r--r--discord/ext/commands/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py
index 812b674e..cafc20f3 100644
--- a/discord/ext/commands/help.py
+++ b/discord/ext/commands/help.py
@@ -598,7 +598,7 @@ class HelpCommand:
Parameters
------------
- mapping: Mapping[Optional[:class:`Cog`], List[:class:`Command`]
+ mapping: Mapping[Optional[:class:`Cog`], List[:class:`Command`]]
A mapping of cogs to commands that have been requested by the user for help.
The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or
``None`` if there isn't one, and the value is a list of commands that belongs to that cog.