From 617ce3139b752c0545dca8b36f1d34385c82caf0 Mon Sep 17 00:00:00 2001 From: ayush chaurasia Date: Mon, 24 Jun 2024 16:55:23 +0530 Subject: [PATCH] lint --- python/python/lancedb/rerankers/base.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/python/lancedb/rerankers/base.py b/python/python/lancedb/rerankers/base.py index d4ed14ed..8c6470dc 100644 --- a/python/python/lancedb/rerankers/base.py +++ b/python/python/lancedb/rerankers/base.py @@ -119,7 +119,10 @@ class Reranker(ABC): fts_results : pa.Table The results from the FTS search """ - combined = pa.concat_tables([vector_results, fts_results], promote_options=u"default") + combined = pa.concat_tables( + [vector_results, fts_results], + promote_options=u"default" + ) row_id = combined.column("_rowid") # deduplicate