(value: list[int])
| 423 | |
| 424 | @staticmethod |
| 425 | def _makeListOfIntsAttribute(value: list[int]) -> Attribute: |
| 426 | return GithubObject.__makeSimpleListAttribute(value, int) |
| 427 | |
| 428 | @staticmethod |
| 429 | def _makeListOfDictsAttribute(value: list[dict[str, str | list[dict[str, str | list[int]]]]]) -> Attribute: |
no test coverage detected