(value: Decimal | None)
| 333 | |
| 334 | @staticmethod |
| 335 | def _makeDecimalAttribute(value: Decimal | None) -> Attribute[Decimal]: |
| 336 | return GithubObject.__makeSimpleAttribute(value, Decimal) |
| 337 | |
| 338 | @staticmethod |
| 339 | def _makeFloatAttribute(value: float | None) -> Attribute[float]: |
no test coverage detected