MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / _get_round_info

Method _get_round_info

codeclash/viewer/app_aws.py:204–208  ·  view source on GitHub ↗

Get round info for a job

(self, job_id: str)

Source from the content-addressed store, hash-verified

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"""

Callers 1

Calls 2

getMethod · 0.80

Tested by

no test coverage detected