From 02e552e8f85aa887782ef747532bfe70f806984b Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 31 Jul 2024 16:30:08 -0700 Subject: [PATCH] fix linting errors --- litellm/proxy/fine_tuning_endpoints/endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/fine_tuning_endpoints/endpoints.py b/litellm/proxy/fine_tuning_endpoints/endpoints.py index a8f01cd489..5439ea9b5e 100644 --- a/litellm/proxy/fine_tuning_endpoints/endpoints.py +++ b/litellm/proxy/fine_tuning_endpoints/endpoints.py @@ -211,7 +211,7 @@ async def list_fine_tuning_jobs( custom_llm_provider: Literal["openai", "azure"], after: Optional[str] = None, limit: Optional[int] = None, - user_api_key_dict: dict = Depends(user_api_key_auth), + user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth), ): """ Lists fine-tuning jobs for the organization. @@ -316,7 +316,7 @@ async def retrieve_fine_tuning_job( request: Request, fastapi_response: Response, fine_tuning_job_id: str, - user_api_key_dict: dict = Depends(user_api_key_auth), + user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth), ): """ Cancel a fine-tuning job.