Get round info for a job
(self, job_id: str)
| 202 | return mapping |
| 203 | |
| 204 | def _get_round_info(self, job_id: str) -> tuple[int, int] | None: |
| 205 | """Get round info for a job""" |
| 206 | if self._job_id_to_round_info is None: |
| 207 | self._build_job_id_to_folder_mapping() |
| 208 | return self._job_id_to_round_info.get(job_id) if self._job_id_to_round_info else None |
| 209 | |
| 210 | def _get_aws_command(self, job_id: str) -> str | None: |
| 211 | """Get AWS command for a job""" |
no test coverage detected