(self)
| 303 | |
| 304 | @property |
| 305 | def subcommand_table(self): |
| 306 | if self._subcommand_table is None: |
| 307 | self._subcommand_table = self._build_subcommand_table() |
| 308 | return self._subcommand_table |
| 309 | |
| 310 | @classmethod |
| 311 | def add_command(cls, command_table, session, **kwargs): |
nothing calls this directly
no test coverage detected