Entry point for subclassed commands to add custom arguments.
(self, parser)
| 378 | return parser |
| 379 | |
| 380 | def add_arguments(self, parser): |
| 381 | """ |
| 382 | Entry point for subclassed commands to add custom arguments. |
| 383 | """ |
| 384 | pass |
| 385 | |
| 386 | def add_base_argument(self, parser, *args, **kwargs): |
| 387 | """ |