(self, args: argparse.Namespace)
| 35 | raise NotImplementedError("Subclasses should implement this method") |
| 36 | |
| 37 | def validate(self, args: argparse.Namespace) -> None: |
| 38 | # No validation by default |
| 39 | pass |
| 40 | |
| 41 | def subparser_init(self, subparsers: argparse._SubParsersAction) -> FlexibleArgumentParser: |
| 42 | raise NotImplementedError("Subclasses should implement this method") |
no outgoing calls