(row: str, parsed_row: ParsedRow)
| 75 | |
| 76 | |
| 77 | def is_header_candidate(row: str, parsed_row: ParsedRow) -> bool: |
| 78 | return bool(row.strip()) and parsed_row.separator_count >= 1 and len(parsed_row.cells) >= 2 |
| 79 | |
| 80 | |
| 81 | def is_separator_row(parsed_row: ParsedRow) -> bool: |
no outgoing calls
no test coverage detected