diff options
| -rw-r--r-- | arthur/exts/fun/ed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/fun/ed.py b/arthur/exts/fun/ed.py index 3ebeaea..33f5ed4 100644 --- a/arthur/exts/fun/ed.py +++ b/arthur/exts/fun/ed.py @@ -11,8 +11,8 @@ class Ed(Cog): def __init__(self, bot: KingArthur) -> None: self.bot = bot - @command(name="ed", usage="[-GVhs] [-p string] [file]") - async def ed(self, ctx: Context, *, _args: str) -> None: + @command(name="ed", help="[-GVhs] [-p string] [file]") + async def ed(self, ctx: Context) -> None: """Ed is the standard text editor.""" await ctx.send("?") |