From 1fe3900800a4ffc0411b73b3ad66f23bc1fa67fe Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 20 May 2024 12:23:27 -0700 Subject: [PATCH] fix python 3.8 --- litellm/llms/vertex_httpx.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/llms/vertex_httpx.py b/litellm/llms/vertex_httpx.py index 9fc9080b086..61920d4e6e8 100644 --- a/litellm/llms/vertex_httpx.py +++ b/litellm/llms/vertex_httpx.py @@ -26,12 +26,10 @@ class VertexAIError(Exception): class VertexLLM(BaseLLM): def __init__(self) -> None: - from google.auth.credentials import Credentials # type: ignore[import-untyped] - super().__init__() self.access_token: Optional[str] = None self.refresh_token: Optional[str] = None - self._credentials: Optional[Credentials] = None + self._credentials: Optional[Any] = None self.project_id: Optional[str] = None def load_auth(self) -> Tuple[Any, str]: