(self)
| 117 | |
| 118 | @property |
| 119 | def shape_processor(self) -> BasicShapeProcessor: |
| 120 | if self._shape_processor is None: |
| 121 | self._shape_processor = BasicShapeProcessor() |
| 122 | return self._shape_processor |
| 123 | |
| 124 | @property |
| 125 | def xml_merger(self) -> XMLMerger: |
nothing calls this directly
no test coverage detected