(text: str, markers: tuple[str, ...])
| 1286 | |
| 1287 | |
| 1288 | def _contains_risk_marker(text: str, markers: tuple[str, ...]) -> bool: |
| 1289 | lowered = text.lower() |
| 1290 | return any(marker in lowered for marker in markers) |
| 1291 | |
| 1292 | |
| 1293 | def _has_nonzero_xml_returncode(text: str) -> bool: |
no outgoing calls
no test coverage detected