Python discord.ext.commands 模块,HelpFormatter() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用discord.ext.commands.HelpFormatter()

项目:Harmonbot    作者:Harmon758    | 项目源码 | 文件源码
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])