(self, input: CommandInput)
| 149 | raise Exception(f"Input command {input} not handled") |
| 150 | |
| 151 | async def handle_cli_submit(self, input: CommandInput) -> CommandOutput: |
| 152 | job_id = await self.handle_submit() |
| 153 | return self.adapter.format_submit_output(job_id) |
| 154 | |
| 155 | async def handle_submit(self) -> JobId: |
| 156 | # By default, create a new job |
no test coverage detected