From fa7037e48a3c4fca075b5734199de8fde973135b Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 19 Jul 2024 15:50:00 -0700 Subject: [PATCH] fix(files/main.py): fix linting error --- litellm/files/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/files/main.py b/litellm/files/main.py index 598bc48787a..836f22f9677 100644 --- a/litellm/files/main.py +++ b/litellm/files/main.py @@ -406,7 +406,7 @@ async def acreate_file( extra_headers: Optional[Dict[str, str]] = None, extra_body: Optional[Dict[str, str]] = None, **kwargs, -) -> Coroutine[Any, Any, FileObject]: +) -> FileObject: """ Async: Files are used to upload documents that can be used with features like Assistants, Fine-tuning, and Batch API. @@ -537,7 +537,7 @@ async def afile_content( extra_headers: Optional[Dict[str, str]] = None, extra_body: Optional[Dict[str, str]] = None, **kwargs, -) -> Coroutine[Any, Any, HttpxBinaryResponseContent]: +) -> HttpxBinaryResponseContent: """ Async: Get file contents