(value: int | str | None)
| 329 | |
| 330 | @staticmethod |
| 331 | def _makeIntAttribute(value: int | str | None) -> Attribute[int]: |
| 332 | return GithubObject.__makeSimpleAttribute(value, int) |
| 333 | |
| 334 | @staticmethod |
| 335 | def _makeDecimalAttribute(value: Decimal | None) -> Attribute[Decimal]: |
no test coverage detected