(self, line: str)
| 145 | |
| 146 | |
| 147 | def is_start_line(self, line: str) -> str | None: |
| 148 | match = self.start_re.match(line.lstrip()) |
| 149 | return match.group(1) if match else None |
| 150 | |
| 151 | def _line(self, lookahead: bool = False) -> str: |
| 152 | self.line_number += 1 |
no test coverage detected