Override this in subclasses to specify the command's behavior.
(self, args: argparse.Namespace)
| 289 | pass |
| 290 | |
| 291 | def run(self, args: argparse.Namespace) -> None: |
| 292 | """Override this in subclasses to specify the command's behavior.""" |
| 293 | pass |
| 294 | |
| 295 | |
| 296 | class HelpCommand(Command): |