(self, attributes: dict[str, Any])
| 62 | return self._vulnerabilities.value |
| 63 | |
| 64 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 65 | if "references" in attributes: |
| 66 | self._references = self._makeListOfDictsAttribute( |
| 67 | attributes["references"], |
| 68 | ) |
| 69 | if "vulnerabilities" in attributes: |
| 70 | self._vulnerabilities = self._makeListOfClassesAttribute( |
| 71 | github.DependabotAlertVulnerability.DependabotAlertVulnerability, |
| 72 | attributes["vulnerabilities"], |
| 73 | ) |
| 74 | super()._useAttributes(attributes) |
nothing calls this directly
no test coverage detected