(self)
| 14 | |
| 15 | class _BodyTextParser(HTMLParser): |
| 16 | def __init__(self) -> None: |
| 17 | super().__init__() |
| 18 | self._parts: list[str] = [] |
| 19 | |
| 20 | def handle_data(self, data: str) -> None: |
| 21 | text = data.strip() |
nothing calls this directly
no outgoing calls
no test coverage detected