def _get_help()

in iact3/cli.py [0:0]


    def _get_help(item):
        help_str = ''
        if item.__doc__ is None:
            return help_str
        for line in item.__doc__.split('\n'):
            if not line.strip().startswith(':'):
                help_str += line.strip()
        return help_str.strip()