Get the text as a single string.
(self)
| 401 | |
| 402 | @property |
| 403 | def plain(self) -> str: |
| 404 | """Get the text as a single string.""" |
| 405 | if len(self._text) != 1: |
| 406 | self._text[:] = ["".join(self._text)] |
| 407 | return self._text[0] |
| 408 | |
| 409 | @plain.setter |
| 410 | def plain(self, new_text: str) -> None: |
nothing calls this directly
no test coverage detected