(args: argparse.Namespace)
| 24 | |
| 25 | |
| 26 | def run(args: argparse.Namespace) -> None: |
| 27 | if args.instance: |
| 28 | instance = get_instance(args.instance) |
| 29 | else: |
| 30 | instance = pick_instance() |
| 31 | mssh(instance, " ".join(args.command)) |
nothing calls this directly
no test coverage detected