From fbf4165068765569c33d373f4b2cd48f6673e05b Mon Sep 17 00:00:00 2001 From: Jen Hamon Date: Tue, 22 Oct 2024 11:24:16 -0400 Subject: [PATCH] Fix typo --- pinecone/grpc/query_results_aggregator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinecone/grpc/query_results_aggregator.py b/pinecone/grpc/query_results_aggregator.py index b01a1200..0ef92be5 100644 --- a/pinecone/grpc/query_results_aggregator.py +++ b/pinecone/grpc/query_results_aggregator.py @@ -163,9 +163,9 @@ def add_results(self, results: Dict[str, Any]): self.is_dotproduct = self._is_dotproduct_index(matches) if self.is_dotproduct: - self._process_matches2(matches, ns, self._dotproduct_heap_item) + self._process_matches(matches, ns, self._dotproduct_heap_item) else: - self._process_matches2(matches, ns, self._non_dotproduct_heap_item) + self._process_matches(matches, ns, self._non_dotproduct_heap_item) def get_results(self) -> QueryNamespacesResults: if self.read: