(self)
| 460 | return self._cli_data |
| 461 | |
| 462 | def _get_command_table(self): |
| 463 | if self._command_table is None: |
| 464 | self._command_table = self._build_command_table() |
| 465 | return self._command_table |
| 466 | |
| 467 | def _get_argument_table(self): |
| 468 | if self._argument_table is None: |
no test coverage detected