(candidates: list[tuple[str, str]], kind: str, value: str)
| 39 | |
| 40 | |
| 41 | def append_candidate(candidates: list[tuple[str, str]], kind: str, value: str) -> None: |
| 42 | cleaned = value.strip() |
| 43 | if cleaned and (kind, cleaned) not in candidates: |
| 44 | candidates.append((kind, cleaned)) |
| 45 | |
| 46 | |
| 47 | def choose_pdf_source(record: dict) -> tuple[str, str]: |
no outgoing calls
no test coverage detected