MCPcopy Index your code
hub / github.com/aws/aws-cli / _get_cli_data

Method _get_cli_data

awscli/clidriver.py:454–460  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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:

Callers 3

_build_argument_tableMethod · 0.95
create_help_commandMethod · 0.95
create_parserMethod · 0.95

Calls 1

get_dataMethod · 0.45

Tested by

no test coverage detected