(self)
| 870 | |
| 871 | @property |
| 872 | def subcommand_table(self): |
| 873 | # There's no subcommands for an operation so we return an |
| 874 | # empty dictionary. |
| 875 | if self._subcommand_table is None: |
| 876 | self._subcommand_table = self._build_subcommand_table() |
| 877 | return self._subcommand_table |
| 878 | |
| 879 | @property |
| 880 | def arg_table(self): |
nothing calls this directly
no test coverage detected