Skip to content

Commit fbf4165

Browse files
committed
Fix typo
1 parent 77a731b commit fbf4165

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pinecone/grpc/query_results_aggregator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ def add_results(self, results: Dict[str, Any]):
163163
self.is_dotproduct = self._is_dotproduct_index(matches)
164164

165165
if self.is_dotproduct:
166-
self._process_matches2(matches, ns, self._dotproduct_heap_item)
166+
self._process_matches(matches, ns, self._dotproduct_heap_item)
167167
else:
168-
self._process_matches2(matches, ns, self._non_dotproduct_heap_item)
168+
self._process_matches(matches, ns, self._non_dotproduct_heap_item)
169169

170170
def get_results(self) -> QueryNamespacesResults:
171171
if self.read:

0 commit comments

Comments
 (0)