(self)
| 878 | |
| 879 | @property |
| 880 | def arg_table(self): |
| 881 | if self._arg_table is None: |
| 882 | self._arg_table = self._create_argument_table() |
| 883 | return self._arg_table |
| 884 | |
| 885 | def _parse_potential_subcommand(self, args, subcommand_table): |
| 886 | if subcommand_table: |
nothing calls this directly
no test coverage detected