(self)
| 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): |