def _get_command_help()

in iact3/cli.py [0:0]


    def _get_command_help(self, commands):
        help_str = ''
        for name, mod in commands.items():
            mod_help = self._get_help(mod)
            if not mod_help:
                help_str += f'{name}\n'
            else:
                help_str += f'{name} - {mod_help}\n'
        return help_str.strip()