(self, command_table)
| 762 | return command_table |
| 763 | |
| 764 | def _add_lineage(self, command_table): |
| 765 | for command in command_table: |
| 766 | command_obj = command_table[command] |
| 767 | command_obj.lineage = self.lineage + [command_obj] |
| 768 | |
| 769 | def create_help_command(self): |
| 770 | command_table = self._get_command_table() |
no outgoing calls
no test coverage detected