(self, attributes: dict[str, Any])
| 838 | return self._score.value |
| 839 | |
| 840 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 841 | # TODO: remove if parent does not implement this |
| 842 | super()._useAttributes(attributes) |
| 843 | if "score" in attributes: # pragma no branch |
| 844 | self._score = self._makeFloatAttribute(attributes["score"]) |
| 845 | |
| 846 | |
| 847 | class SubIssue(Issue): |
nothing calls this directly
no test coverage detected