(name: str, **kwargs: Any)
| 79 | return subparser |
| 80 | |
| 81 | def add_image_subcommand(name: str, **kwargs: Any) -> argparse.ArgumentParser: |
| 82 | subparser = add_subcommand(name, **kwargs) |
| 83 | subparser.add_argument( |
| 84 | "image", help="the name of an mzbuild image in this repository" |
| 85 | ) |
| 86 | return subparser |
| 87 | |
| 88 | add_subcommand( |
| 89 | "list", |
no test coverage detected