(self)
| 372 | |
| 373 | @property |
| 374 | def token(self) -> str: |
| 375 | if self.__installation_authorization is None or self._is_expired: |
| 376 | self.__installation_authorization = self._get_installation_authorization() |
| 377 | return self.__installation_authorization.token |
| 378 | |
| 379 | @property |
| 380 | def _is_expired(self) -> bool: |
nothing calls this directly
no test coverage detected