(name: str)
| 89 | |
| 90 | |
| 91 | def _run_id_sort_key(name: str) -> tuple[int, str]: |
| 92 | match = re.search(r"run_(\d+)", name) |
| 93 | if match: |
| 94 | return (int(match.group(1)), name) |
| 95 | return (0, name) |
| 96 | |
| 97 | |
| 98 | def _sorted_image_paths(image_dir: Path) -> list[Path]: |
no outgoing calls
no test coverage detected