Skip to content

Commit 58facae

Browse files
committed
Fix merge issues
1 parent d2d1b5c commit 58facae

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

redisvl/index/index.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -777,11 +777,7 @@ def batch_query(
777777
)
778778
all_parsed = []
779779
for query, batch_results in zip(queries, results):
780-
parsed = process_results(
781-
batch_results,
782-
query=query,
783-
storage_type=self.schema.index.storage_type,
784-
)
780+
parsed = process_results(batch_results, query=query, schema=self.schema)
785781
# Create separate lists of parsed results for each query
786782
# passed in to the batch_search method, so that callers can
787783
# access the results for each query individually
@@ -1421,7 +1417,7 @@ async def batch_query(
14211417
parsed = process_results(
14221418
batch_results,
14231419
query=query,
1424-
storage_type=self.schema.index.storage_type,
1420+
schema=self.schema,
14251421
)
14261422
# Create separate lists of parsed results for each query
14271423
# passed in to the batch_search method, so that callers can

0 commit comments

Comments
 (0)