(row: Dict[str, Any])
| 675 | |
| 676 | |
| 677 | def label_key(row: Dict[str, Any]) -> Tuple[str, str]: |
| 678 | return (str(row.get("episode_id") or ""), paper_identity(row)) |
| 679 | |
| 680 | |
| 681 | def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]: |
no test coverage detected