From 7b65be9d25358848eff377800760c5d1e200b0d6 Mon Sep 17 00:00:00 2001 From: Var <94229714+VarMonke@users.noreply.github.com> Date: Thu, 5 May 2022 09:04:49 +0530 Subject: [PATCH] [commands] Fix broken None reference Co-authored-by: Danny --- discord/ext/commands/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 2eff4b94b..fbe62f4de 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -449,7 +449,7 @@ class Context(discord.abc.Messageable, Generic[BotT]): Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` - this returns :class:`None` on bad input or no help command. + this returns ``None`` on bad input or no help command. Parameters ------------