(value: int)
| 349 | |
| 350 | @staticmethod |
| 351 | def _makeTimestampAttribute(value: int) -> Attribute[datetime]: |
| 352 | return GithubObject.__makeTransformedAttribute( |
| 353 | value, |
| 354 | int, |
| 355 | lambda t: datetime.fromtimestamp(t, tz=timezone.utc), |
| 356 | ) |
| 357 | |
| 358 | @staticmethod |
| 359 | def _makeDatetimeAttribute(value: str | None) -> Attribute[datetime]: |
no test coverage detected