fix typing errors

This commit is contained in:
Ishaan Jaff 2024-07-19 16:40:54 -07:00
parent abfb600406
commit dc6fce3140

View file

@ -50,7 +50,7 @@ async def acreate_batch(
extra_headers: Optional[Dict[str, str]] = None, extra_headers: Optional[Dict[str, str]] = None,
extra_body: Optional[Dict[str, str]] = None, extra_body: Optional[Dict[str, str]] = None,
**kwargs, **kwargs,
) -> Coroutine[Any, Any, Batch]: ) -> Batch:
""" """
Async: Creates and executes a batch from an uploaded file of request Async: Creates and executes a batch from an uploaded file of request
@ -189,7 +189,7 @@ async def aretrieve_batch(
extra_headers: Optional[Dict[str, str]] = None, extra_headers: Optional[Dict[str, str]] = None,
extra_body: Optional[Dict[str, str]] = None, extra_body: Optional[Dict[str, str]] = None,
**kwargs, **kwargs,
) -> Coroutine[Any, Any, Batch]: ) -> Batch:
""" """
Async: Retrieves a batch. Async: Retrieves a batch.