fix(proxy_server.py): fix linting errors

This commit is contained in:
Krrish Dholakia 2023-11-18 17:35:16 -08:00
parent 59b547a65e
commit 1812b7ae37

View file

@ -329,7 +329,7 @@ async def generate_key_helper_fn(duration_str: str, models: Optional[list]):
"models": models
}
new_verification_token = await db.litellm_verificationtoken.create( # type: ignore
{**verification_token_data}
{**verification_token_data} # type: ignore
)
print(f"new_verification_token: {new_verification_token}")
except Exception as e: