(self)
| 161 | return self._url.value |
| 162 | |
| 163 | def get_user_push_restrictions(self) -> PaginatedList[NamedUser] | None: |
| 164 | if not is_defined(self._user_push_restrictions): |
| 165 | return None |
| 166 | return PaginatedList( |
| 167 | github.NamedUser.NamedUser, |
| 168 | self._requester, |
| 169 | self._user_push_restrictions, |
| 170 | None, |
| 171 | ) |
| 172 | |
| 173 | def get_team_push_restrictions(self) -> PaginatedList[Team] | None: |
| 174 | if not is_defined(self._team_push_restrictions): |
nothing calls this directly
no test coverage detected