(self, property_name: str)
| 280 | element.text = value |
| 281 | |
| 282 | def _text_of_element(self, property_name: str) -> str: |
| 283 | element = getattr(self, property_name) |
| 284 | if element is None: |
| 285 | return "" |
| 286 | if element.text is None: |
| 287 | return "" |
| 288 | return element.text |
no outgoing calls
no test coverage detected