(self)
| 69 | return etree.tounicode(dom, pretty_print=True) |
| 70 | |
| 71 | def pprint(self) -> None: |
| 72 | from .visitors import PrettyPrinter |
| 73 | |
| 74 | self.accept(PrettyPrinter()) |
| 75 | |
| 76 | @classmethod |
| 77 | def wrap_blocks(cls, x: t.Union[Self, t.List[BlockOrPrimitive], BlockOrPrimitive]) -> Self: |
nothing calls this directly
no test coverage detected