From 21d27bd44aed4e296441747a5dba40556b4eafc2 Mon Sep 17 00:00:00 2001 From: LightSage Date: Sat, 13 Nov 2021 04:35:57 -0600 Subject: [PATCH] Fix command repr (#22) --- revolt/ext/commands/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/revolt/ext/commands/command.py b/revolt/ext/commands/command.py index 214727c..51739d0 100755 --- a/revolt/ext/commands/command.py +++ b/revolt/ext/commands/command.py @@ -128,7 +128,7 @@ class Command: context.args.append(await self.convert_argument(context.view.get_next_word(), parameter, context)) def __repr__(self) -> str: - return f"\"" + return f"" def command(*, name: Optional[str] = None, aliases: Optional[list[str]] = None, cls: type[Command] = Command): """A decorator that turns a function into a :class:`Command`.