(line: str, start: int, end: int, pad: int = 12)
| 1131 | |
| 1132 | |
| 1133 | def _audit_snippet(line: str, start: int, end: int, pad: int = 12) -> str: |
| 1134 | return line[max(0, start - pad) : min(len(line), end + pad)] |
| 1135 | |
| 1136 | |
| 1137 | def _audit_scan_quad_star(markdown: str, html: str) -> list[tuple[int, str]]: |
no outgoing calls
no test coverage detected