(row: Dict[str, Any])
| 209 | |
| 210 | |
| 211 | def paper_text(row: Dict[str, Any]) -> str: |
| 212 | return " ".join(str(part or "") for part in (row.get("title"), row.get("abstract")) if part) |
| 213 | |
| 214 | |
| 215 | def paper_identity(row: Dict[str, Any]) -> str: |
no test coverage detected