(self)
| 291 | return subject_token |
| 292 | |
| 293 | def _token_unusable(self) -> bool: |
| 294 | return self._cached_token is None or self._token_expired() |
| 295 | |
| 296 | def _token_expired(self) -> bool: |
| 297 | if self._cached_token_expires_at_monotonic is None: |
no test coverage detected