(row: Dict[str, Any])
| 476 | |
| 477 | |
| 478 | def label_key(row: Dict[str, Any]) -> Tuple[str, str]: |
| 479 | return (str(row.get("episode_id") or ""), paper_identity(row)) |
| 480 | |
| 481 | |
| 482 | def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]: |
no test coverage detected