(account_id, auth_info)
| 146 | return read_token_cache().get(account_id) |
| 147 | |
| 148 | def save_cached_token(account_id, auth_info): |
| 149 | cache = read_token_cache() |
| 150 | cache[account_id] = auth_info |
| 151 | write_token_cache(cache) |
| 152 | |
| 153 | def remove_cached_token(account_id): |
| 154 | cache = read_token_cache() |
no test coverage detected