(row: Dict[str, Any])
| 147 | |
| 148 | |
| 149 | def paper_text(row: Dict[str, Any]) -> str: |
| 150 | return " ".join(str(part or "") for part in (row.get("title"), row.get("abstract")) if part) |
| 151 | |
| 152 | |
| 153 | def paper_identity(row: Dict[str, Any]) -> str: |
no test coverage detected