(self, parent: etree.Element, block: str)
| 551 | """ Process blocks that are empty or start with an empty line. """ |
| 552 | |
| 553 | def test(self, parent: etree.Element, block: str) -> bool: |
| 554 | return not block or block.startswith('\n') |
| 555 | |
| 556 | def run(self, parent: etree.Element, blocks: list[str]) -> None: |
| 557 | block = blocks.pop(0) |
nothing calls this directly
no outgoing calls
no test coverage detected