(self, attributes: dict[str, Any])
| 298 | return self._score.value |
| 299 | |
| 300 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 301 | super()._useAttributes(attributes) |
| 302 | if "score" in attributes: # pragma no branch |
| 303 | self._score = self._makeFloatAttribute(attributes["score"]) |
nothing calls this directly
no test coverage detected