(row: Dict[str, Any])
| 157 | |
| 158 | |
| 159 | def label_key(row: Dict[str, Any]) -> Tuple[str, str]: |
| 160 | return str(row.get("episode_id") or ""), paper_identity(row) |
| 161 | |
| 162 | |
| 163 | def build_label_map(label_rows: Sequence[Dict[str, Any]]) -> Dict[Tuple[str, str], Dict[str, Any]]: |
no test coverage detected