Browse Source

Use get_bot_mapping to generate bot help

This change makes it so that `DefaultHelpCommand` uses it's `mapping` argument (generated by `get_bot_mapping()`), to generate it's help output. This change does not directly change DefaultHelpCommand behavior and will continue to generate the same output, but allows subclasses to override get_bot_mapping to make alterations to the return value of get_bot_mapping to, for example, add or remove elements.
pull/9330/head
Daniel Baulig 2 years ago
committed by GitHub
parent
commit
55d9ee9b72
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      discord/ext/commands/help.py

21
discord/ext/commands/help.py

@ -1241,18 +1241,17 @@ class DefaultHelpCommand(HelpCommand):
no_category = f'\u200b{self.no_category}:'
def get_category(command, *, no_category=no_category):
cog = command.cog
def get_cog_name(cog, *, no_category=no_category):
return cog.qualified_name + ':' if cog is not None else no_category
filtered = await self.filter_commands(bot.commands, sort=True, key=get_category)
max_size = self.get_max_size(filtered)
to_iterate = itertools.groupby(filtered, key=get_category)
# Now we can add the commands to the page.
for category, commands in to_iterate:
commands = sorted(commands, key=lambda c: c.name) if self.sort_commands else list(commands)
self.add_indented_commands(commands, heading=category, max_size=max_size)
cogs = sorted(mapping.keys(), key=get_cog_name)
max_size = max([self.get_max_size(mapping[cog]) for cog in mapping], default=0)
for cog in cogs:
commands = await self.filter_commands(mapping[cog])
if self.sort_commands:
commands = sorted(commands, key=lambda c: c.name)
self.add_indented_commands(commands, heading=get_cog_name(cog), max_size=max_size)
note = self.get_ending_note()
if note:

Loading…
Cancel
Save