Skip to content

Commit

Permalink
Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Oct 21, 2024
1 parent 00d0c12 commit ae244a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinecone/grpc/index_grpc_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async def _query(
sparse_vector: Optional[Union[GRPCSparseValues, SparseVectorTypedDict]] = None,
semaphore: Optional[asyncio.Semaphore] = None,
**kwargs,
) -> dict[str, Any]:
) -> Dict[str, Any]:
if vector is not None and id is not None:
raise ValueError("Cannot specify both `id` and `vector`")

Expand Down

0 comments on commit ae244a2

Please sign in to comment.