(self, data: str)
| 32 | self._current_text = [] |
| 33 | |
| 34 | def handle_data(self, data: str) -> None: |
| 35 | if self._in_objects_select and self._current_value is not None: |
| 36 | self._current_text.append(data) |
| 37 | |
| 38 | def handle_endtag(self, tag: str) -> None: |
| 39 | if tag == "option" and self._in_objects_select and self._current_value: |
nothing calls this directly
no outgoing calls
no test coverage detected