(self)
| 132 | |
| 133 | @property |
| 134 | def protection(self) -> BranchProtection: |
| 135 | if is_undefined(self._protection): |
| 136 | return self.get_protection() |
| 137 | return self._protection.value |
| 138 | |
| 139 | @property |
| 140 | def protection_url(self) -> str: |
nothing calls this directly
no test coverage detected