Skip to content

Commit ae244a2

Browse files
committed
Fix type issue
1 parent 00d0c12 commit ae244a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pinecone/grpc/index_grpc_asyncio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ async def _query(
151151
sparse_vector: Optional[Union[GRPCSparseValues, SparseVectorTypedDict]] = None,
152152
semaphore: Optional[asyncio.Semaphore] = None,
153153
**kwargs,
154-
) -> dict[str, Any]:
154+
) -> Dict[str, Any]:
155155
if vector is not None and id is not None:
156156
raise ValueError("Cannot specify both `id` and `vector`")
157157

0 commit comments

Comments
 (0)