(self)
| 452 | return self._error_handler |
| 453 | |
| 454 | def _get_cli_data(self): |
| 455 | # Not crazy about this but the data in here is needed in |
| 456 | # several places (e.g. MainArgParser, ProviderHelp) so |
| 457 | # we load it here once. |
| 458 | if self._cli_data is None: |
| 459 | self._cli_data = self.session.get_data('cli') |
| 460 | return self._cli_data |
| 461 | |
| 462 | def _get_command_table(self): |
| 463 | if self._command_table is None: |
no test coverage detected