(self, attributes: dict[str, Any])
| 751 | return self._score.value |
| 752 | |
| 753 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 754 | super()._useAttributes(attributes) |
| 755 | if "score" in attributes: # pragma no branch |
| 756 | self._score = self._makeFloatAttribute(attributes["score"]) |
| 757 | |
| 758 | |
| 759 | # A better place would be github.OrganizationInvitation.OrganizationInvitation |
nothing calls this directly
no test coverage detected