diff options
| author | 2021-03-13 10:16:31 -0500 | |
|---|---|---|
| committer | 2021-03-13 10:16:31 -0500 | |
| commit | 9ec1cf9b983a69c381507f82c317e0465eecdc35 (patch) | |
| tree | 7deaf95949693aafc7592dfe7933425ebdc8f6dc /bot/exts/valentines/be_my_valentine.py | |
| parent | Make flake8 happy again. (diff) | |
make invoke_help_command only take ctx
Diffstat (limited to 'bot/exts/valentines/be_my_valentine.py')
| -rw-r--r-- | bot/exts/valentines/be_my_valentine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/be_my_valentine.py b/bot/exts/valentines/be_my_valentine.py index d5cc8644..09591cf8 100644 --- a/bot/exts/valentines/be_my_valentine.py +++ b/bot/exts/valentines/be_my_valentine.py @@ -44,7 +44,7 @@ class BeMyValentine(commands.Cog): 2) use the command \".lovefest unsub\" to get rid of the lovefest role. """ if not ctx.invoked_subcommand: - await invoke_help_command(ctx, ctx.command.name) + await invoke_help_command(ctx) @lovefest_role.command(name="sub") async def add_role(self, ctx: commands.Context) -> None: |