(self, **kwargs)
| 877 | return command.execute_args(params, args, **kwargs) |
| 878 | |
| 879 | def print_help(self, **kwargs): |
| 880 | print(f'{kwargs.get("command")} command [--options]') |
| 881 | table = [] |
| 882 | headers = ['Command', 'Description'] |
| 883 | for verb in self._commands.keys(): |
| 884 | row = [verb, self._command_info.get(verb) or ''] |
| 885 | table.append(row) |
| 886 | print('') |
| 887 | dump_report_data(table, headers=headers) |
| 888 | print('') |
| 889 | |
| 890 | def validate(self, params): # type: (KeeperParams) -> None |
| 891 | pass |
no test coverage detected