fix all ruff check issues

This commit is contained in:
Taylor Wilsdon
2025-08-02 18:55:35 -04:00
parent e37803240a
commit 2a4118bb65
7 changed files with 23 additions and 31 deletions

View File

@@ -8,15 +8,10 @@ allowing authenticated sessions to be passed through to Google API calls.
import asyncio
import logging
from typing import Optional, Tuple, Any, Dict
from functools import lru_cache
from google.oauth2.credentials import Credentials
from googleapiclient.discovery import build
from auth.oauth21_google_bridge import get_auth_provider, get_credentials_from_token
from auth.google_auth import (
save_credentials_to_session,
load_credentials_from_session,
GoogleAuthenticationError,
)