(self, attributes: dict[str, Any])
| 83 | return self._status.value |
| 84 | |
| 85 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 86 | if "configuration" in attributes: # pragma no branch |
| 87 | self._configuration = self._makeClassAttribute( |
| 88 | github.CodeSecurityConfig.CodeSecurityConfig, attributes["configuration"] |
| 89 | ) |
| 90 | if "status" in attributes: # pragma no branch |
| 91 | self._status = self._makeStringAttribute(attributes["status"]) |
nothing calls this directly
no test coverage detected