(value: bool | None)
| 341 | |
| 342 | @staticmethod |
| 343 | def _makeBoolAttribute(value: bool | None) -> Attribute[bool]: |
| 344 | return GithubObject.__makeSimpleAttribute(value, bool) |
| 345 | |
| 346 | @staticmethod |
| 347 | def _makeDictAttribute(value: dict[str, Any]) -> Attribute[dict[str, Any]]: |
no test coverage detected