From ed2650f7864229464b3317c08abde4345959f191 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Thu, 14 Jan 2021 09:17:18 +0100 Subject: [PATCH] Fix documented type of `Command.usage` --- discord/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index b0358ca9a87e..2d2291f40cd3 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -144,7 +144,7 @@ class Command(_BaseCommand): The long help text for the command. brief: Optional[:class:`str`] The short help text for the command. - usage: :class:`str` + usage: Optional[:class:`str`] A replacement for arguments in the default help text. aliases: Union[List[:class:`str`], Tuple[:class:`str`]] The list of aliases the command can be invoked under.