(value: int | str | None)
| 325 | |
| 326 | @staticmethod |
| 327 | def _makeStringAttribute(value: int | str | None) -> Attribute[str]: |
| 328 | return GithubObject.__makeSimpleAttribute(value, str) |
| 329 | |
| 330 | @staticmethod |
| 331 | def _makeIntAttribute(value: int | str | None) -> Attribute[int]: |
no test coverage detected