Skip to content

Commit

Permalink
mypy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Nov 14, 2024
1 parent b2e7b54 commit ef1d30e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pinecone/grpc/index_grpc_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,7 @@ async def fetch(

request = FetchRequest(ids=ids, **args_dict, **kwargs)
response = await self.runner.run_asyncio(self.stub.Fetch, request, timeout=timeout)
json_response = json_format.MessageToDict(response)
return parse_fetch_response(json_response)
return parse_fetch_response(response)

async def update(
self,
Expand Down

0 comments on commit ef1d30e

Please sign in to comment.