(self, parent: etree.Element, block: str)
| 34 | NO_INDENT_RE = re.compile(r'^[ ]{0,3}[^ :]') |
| 35 | |
| 36 | def test(self, parent: etree.Element, block: str) -> bool: |
| 37 | return bool(self.RE.search(block)) |
| 38 | |
| 39 | def run(self, parent: etree.Element, blocks: list[str]) -> bool | None: |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected