(value: str | None)
| 357 | |
| 358 | @staticmethod |
| 359 | def _makeDatetimeAttribute(value: str | None) -> Attribute[datetime]: |
| 360 | return GithubObject.__makeTransformedAttribute(value, str, _datetime_from_github_isoformat) # type: ignore |
| 361 | |
| 362 | @staticmethod |
| 363 | def _makeHttpDatetimeAttribute(value: str | None) -> Attribute[datetime]: |
no test coverage detected