Get current authentication status.
()
| 4579 | def _is_pwn_install_stale(status: Optional[dict], max_age_seconds: int = PWN_INSTALL_STALE_SECONDS) -> bool: |
| 4580 | if not status: |
| 4581 | return True |
| 4582 | |
| 4583 | timestamp = status.get('timestamp') |
| 4584 | if not timestamp: |
| 4585 | return True |
| 4586 |
nothing calls this directly
no test coverage detected