(terms: list[str], text: str)
| 1385 | |
| 1386 | |
| 1387 | def _count_term_hits(terms: list[str], text: str) -> int: |
| 1388 | return sum(1 for term in terms if _term_in_text(term, text)) |
| 1389 | |
| 1390 | |
| 1391 | def _domain_route_label(rule: dict[str, Any]) -> str: |
no test coverage detected