(self, attributes: dict[str, Any])
| 420 | return self._score.value |
| 421 | |
| 422 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 423 | super()._useAttributes(attributes) |
| 424 | if "score" in attributes: # pragma no branch |
| 425 | self._score = self._makeFloatAttribute(attributes["score"]) |
nothing calls this directly
no test coverage detected