diff options
author | 2021-05-16 15:50:07 -0400 | |
---|---|---|
committer | 2021-05-16 15:50:07 -0400 | |
commit | 07b5f296bed099d4cde849cfeba3320e3f4aa808 (patch) | |
tree | 87b8efa0a3d11d38eb0f77c75e4a42d5033584b9 /bot/utils/extensions.py | |
parent | delete trailing whitespace after docstring (diff) | |
parent | Merge pull request #738 from python-discord/vcokltfre/feat/bookmark-reply (diff) |
Merge branch 'main' into main
Diffstat (limited to 'bot/utils/extensions.py')
-rw-r--r-- | bot/utils/extensions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/utils/extensions.py b/bot/utils/extensions.py index 459588a1..cd491c4b 100644 --- a/bot/utils/extensions.py +++ b/bot/utils/extensions.py @@ -35,8 +35,8 @@ def walk_extensions() -> Iterator[str]: async def invoke_help_command(ctx: Context) -> None: """Invoke the help command or default help command if help extensions is not loaded.""" - if 'bot.exts.evergreen.help' in ctx.bot.extensions: - help_command = ctx.bot.get_command('help') + if "bot.exts.evergreen.help" in ctx.bot.extensions: + help_command = ctx.bot.get_command("help") await ctx.invoke(help_command, ctx.command.qualified_name) return await ctx.send_help(ctx.command) |