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

Method _build_subcommand_table

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

Source from the content-addressed store, hash-verified

858 return [cmd.name for cmd in self.lineage]
859
860 def _build_subcommand_table(self):
861 subcommand_table = OrderedDict()
862 full_name = '_'.join([c.name for c in self.lineage])
863 self._session.emit(
864 f'building-command-table.{full_name}',
865 command_table=subcommand_table,
866 session=self._session,
867 command_object=self,
868 )
869 return subcommand_table
870
871 @property
872 def subcommand_table(self):

Callers 1

subcommand_tableMethod · 0.95

Calls 1

emitMethod · 0.45

Tested by

no test coverage detected