(self, attributes: dict[str, Any])
| 4973 | return self._text_matches.value |
| 4974 | |
| 4975 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 4976 | super()._useAttributes(attributes) |
| 4977 | if "score" in attributes: # pragma no branch |
| 4978 | self._score = self._makeFloatAttribute(attributes["score"]) |
| 4979 | if "text_matches" in attributes: # pragma no branch |
| 4980 | self._text_matches = self._makeDictAttribute(attributes["text_matches"]) |
nothing calls this directly
no test coverage detected