()
| 826 | |
| 827 | |
| 828 | def _xdg_config_home() -> pathlib.Path: |
| 829 | configured = os.environ.get("XDG_CONFIG_HOME") |
| 830 | if configured: |
| 831 | return pathlib.Path(configured) |
| 832 | return pathlib.Path.home() / ".config" |
| 833 | |
| 834 | |
| 835 | # Re-check the cached token roughly 30 seconds before the issuer's |
no test coverage detected