(self, job_id: JobId)
| 20 | raise Exception(f"Unknown PBS command {cmd}") |
| 21 | |
| 22 | def format_submit_output(self, job_id: JobId) -> CommandOutput: |
| 23 | return response(stdout=job_id) |
| 24 | |
| 25 | def parse_status_job_ids(self, input: CommandInput) -> List[JobId]: |
| 26 | job_ids = [] |
nothing calls this directly
no test coverage detected