(self, parsed_args, parsed_globals)
| 72 | super(WaitCommand, self).__init__(session) |
| 73 | |
| 74 | def _run_main(self, parsed_args, parsed_globals): |
| 75 | if parsed_args.subcommand is None: |
| 76 | self._raise_usage_error() |
| 77 | return 0 |
| 78 | |
| 79 | def _build_subcommand_table(self): |
| 80 | subcommand_table = super(WaitCommand, self)._build_subcommand_table() |
nothing calls this directly
no test coverage detected