(candidate: dict[str, Any], candidate_text: str)
| 255 | |
| 256 | |
| 257 | def _candidate_doi(candidate: dict[str, Any], candidate_text: str) -> str: |
| 258 | return _normalize_doi(str(candidate.get("doi", "")) or candidate_text) |
| 259 | |
| 260 | |
| 261 | def _candidate_arxiv_ids(candidate: dict[str, Any], candidate_text: str) -> set[str]: |
no test coverage detected