If argcomplete is enabled, allow triggering command-line autocompletion
(self, classes: list[t.Any], subcommands: SubcommandsDict | None)
| 913 | raise NotImplementedError("subclasses must implement _add_arguments") |
| 914 | |
| 915 | def _argcomplete(self, classes: list[t.Any], subcommands: SubcommandsDict | None) -> None: |
| 916 | """If argcomplete is enabled, allow triggering command-line autocompletion""" |
| 917 | |
| 918 | def _parse_args(self, args: t.Any) -> t.Any: |
| 919 | """self.parser->self.parsed_data""" |