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/evergreen/status_codes.py | |
parent | Make flake8 happy again. (diff) |
make invoke_help_command only take ctx
Diffstat (limited to 'bot/exts/evergreen/status_codes.py')
-rw-r--r-- | bot/exts/evergreen/status_codes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/status_codes.py b/bot/exts/evergreen/status_codes.py index 127f3424..7c00fe20 100644 --- a/bot/exts/evergreen/status_codes.py +++ b/bot/exts/evergreen/status_codes.py @@ -19,7 +19,7 @@ class HTTPStatusCodes(commands.Cog): async def http_status_group(self, ctx: commands.Context) -> None: """Group containing dog and cat http status code commands.""" if not ctx.invoked_subcommand: - await invoke_help_command(ctx, ctx.command.name) + await invoke_help_command(ctx) @http_status_group.command(name='cat') async def http_cat(self, ctx: commands.Context, code: int) -> None: |