(
value: list[list[str]],
)
| 431 | |
| 432 | @staticmethod |
| 433 | def _makeListOfListOfStringsAttribute( |
| 434 | value: list[list[str]], |
| 435 | ) -> Attribute: |
| 436 | return GithubObject.__makeSimpleListAttribute(value, list) |
| 437 | |
| 438 | def _makeListOfClassesAttribute(self, klass: type[T_gh], value: Any) -> Attribute[list[T_gh]]: |
| 439 | if isinstance(value, list) and all(isinstance(element, dict) for element in value): |
no test coverage detected