(self, input: CommandInput)
| 171 | return {job_id: self.jobs.get(job_id) for job_id in job_ids} |
| 172 | |
| 173 | async def handle_cli_delete(self, input: CommandInput) -> CommandOutput: |
| 174 | assert len(input.arguments) == 1 |
| 175 | await self.handle_delete(input.arguments[0]) |
| 176 | return response() |
| 177 | |
| 178 | async def handle_delete(self, job_id: JobId): |
| 179 | assert job_id in self.jobs |
no test coverage detected