(text: str)
| 110 | |
| 111 | |
| 112 | def validate_report(text: str) -> list[str]: |
| 113 | errors: list[str] = [] |
| 114 | validate_required_sections(text, errors) |
| 115 | validate_findings(text, errors) |
| 116 | return errors |
| 117 | |
| 118 | |
| 119 | def main() -> int: |
no test coverage detected