(value: dict[str, Any])
| 345 | |
| 346 | @staticmethod |
| 347 | def _makeDictAttribute(value: dict[str, Any]) -> Attribute[dict[str, Any]]: |
| 348 | return GithubObject.__makeSimpleAttribute(value, dict) |
| 349 | |
| 350 | @staticmethod |
| 351 | def _makeTimestampAttribute(value: int) -> Attribute[datetime]: |
no test coverage detected