(items: list[str], fallback: str)
| 77 | |
| 78 | |
| 79 | def _bullets(items: list[str], fallback: str) -> list[str]: |
| 80 | return [f"- {item}" for item in (items or [fallback])] |
| 81 | |
| 82 | |
| 83 | def _code_evidence_catalog(finding: dict[str, Any]) -> dict[str, dict[str, Any]]: |
no outgoing calls
no test coverage detected