(value: float | None)
| 337 | |
| 338 | @staticmethod |
| 339 | def _makeFloatAttribute(value: float | None) -> Attribute[float]: |
| 340 | return GithubObject.__makeSimpleAttribute(value, float) |
| 341 | |
| 342 | @staticmethod |
| 343 | def _makeBoolAttribute(value: bool | None) -> Attribute[bool]: |
no test coverage detected