From 73ce9aceb28f443afdfb8c23f0a959c4c2a2ee5b Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 18 Nov 2023 17:05:46 -0800 Subject: [PATCH] (fix) linting --- litellm/proxy/proxy_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index 14ca79fca..f902ffb63 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -320,7 +320,7 @@ async def generate_key_helper_fn(duration_str: str): "token": token, "expires": expires } - new_verification_token = await db.litellm_verificationtoken.create( + new_verification_token = await db.litellm_verificationtoken.create( # type: ignore {**verification_token_data} ) print(f"new_verification_token: {new_verification_token}")