(row: Dict[str, Any])
| 598 | |
| 599 | |
| 600 | def label_key(row: Dict[str, Any]) -> Tuple[str, str]: |
| 601 | return (str(row.get("episode_id") or ""), paper_identity(row)) |
| 602 | |
| 603 | |
| 604 | def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]: |
no test coverage detected