(self)
| 494 | |
| 495 | @property |
| 496 | def subcommand_table(self): |
| 497 | if self._subcommand_table is None: |
| 498 | if self._topic_tag_db is None: |
| 499 | self._topic_tag_db = TopicTagDB() |
| 500 | self._topic_tag_db.load_json_index() |
| 501 | self._subcommand_table = self._create_subcommand_table() |
| 502 | return self._subcommand_table |
| 503 | |
| 504 | def _create_subcommand_table(self): |
| 505 | subcommand_table = {} |
nothing calls this directly
no test coverage detected