def _get_class_methods()

in iact3/cli.py [0:0]


    def _get_class_methods(module):
        methods = inspect.getmembers(module, predicate=inspect.isfunction)
        return [method for method in methods if not method[0].startswith('_')]