Load OAuth tokens from the local credentials file.
()
| 91 | |
| 92 | |
| 93 | def _load_credentials(): |
| 94 | """Load OAuth tokens from the local credentials file.""" |
| 95 | with open(_CREDENTIALS_FILE, "r") as f: |
| 96 | return json.load(f) |
| 97 | |
| 98 | |
| 99 | # ── Token validation & refresh ────────────────────────────────────── |
no outgoing calls
no test coverage detected
searching dependent graphs…