Save OAuth tokens to the local credentials file.
(tokens)
| 85 | |
| 86 | |
| 87 | def _save_credentials(tokens): |
| 88 | """Save OAuth tokens to the local credentials file.""" |
| 89 | with open(_CREDENTIALS_FILE, "w") as f: |
| 90 | json.dump(tokens, f) |
| 91 | |
| 92 | |
| 93 | def _load_credentials(): |
no outgoing calls
no test coverage detected
searching dependent graphs…