Do the main function call work. :type arguments: Dict
(self, **kwargs)
| 302 | return _Argument.get_key(*args, **kwargs) |
| 303 | |
| 304 | def main(self, **kwargs): |
| 305 | ''' |
| 306 | Do the main function call work. |
| 307 | |
| 308 | :type arguments: Dict |
| 309 | ''' |
| 310 | raise NotImplementedError |
| 311 | |
| 312 | if __name__ == '__main__': |
| 313 | class OneCliFunction(CliFunction): |