我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用discord.ext.commands.HelpFormatter()。
def allcommands(self, ctx): '''All the commands''' # TODO: Fix/Deprecate?, all_commands alias formatter = commands.HelpFormatter(show_check_failure = True, show_hidden = True) formatter.format_help_for(ctx, self.bot) _commands = formatter.filter_command_list() _allcommands = "" for name, _command in _commands: _allcommands += name + ' ' await self.bot.whisper(_allcommands[:-1])