(self)
| 91 | |
| 92 | class _HTMLTextParser(HTMLParser): |
| 93 | def __init__(self) -> None: |
| 94 | super().__init__() |
| 95 | self._parts: list[str] = [] |
| 96 | |
| 97 | def handle_data(self, data: str) -> None: |
| 98 | text = data.strip() |
nothing calls this directly
no outgoing calls
no test coverage detected