(self, input: CommandInput)
| 163 | return job_id |
| 164 | |
| 165 | async def handle_cli_status(self, input: CommandInput) -> CommandOutput: |
| 166 | job_ids = self.adapter.parse_status_job_ids(input) |
| 167 | job_data = await self.handle_status(job_ids) |
| 168 | return self.adapter.format_status_output(job_data) |
| 169 | |
| 170 | async def handle_status(self, job_ids: List[JobId]) -> Dict[JobId, Optional[JobData]]: |
| 171 | return {job_id: self.jobs.get(job_id) for job_id in job_ids} |
no test coverage detected