From 7b61ffde5e1e86dfce1113013eb91afc8e590af7 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 21 Dec 2024 14:31:23 -0800 Subject: [PATCH] apply linting fixes --- litellm/proxy/management_endpoints/ui_sso.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/management_endpoints/ui_sso.py b/litellm/proxy/management_endpoints/ui_sso.py index 06f02c50d6..29c22faa33 100644 --- a/litellm/proxy/management_endpoints/ui_sso.py +++ b/litellm/proxy/management_endpoints/ui_sso.py @@ -8,7 +8,7 @@ Has all /sso/* routes import asyncio import os import uuid -from typing import TYPE_CHECKING, List, Optional +from typing import TYPE_CHECKING, Any, Dict, List, Optional from fastapi import APIRouter, Depends, HTTPException, Request, status from fastapi.responses import RedirectResponse @@ -447,7 +447,7 @@ async def auth_callback(request: Request): # noqa: PLR0915 # User might not be already created on first generation of key # But if it is, we want their models preferences - default_ui_key_values = { + default_ui_key_values: Dict[str, Any] = { "duration": "24hr", "key_max_budget": litellm.max_ui_session_budget, "aliases": {},