Skip to content

Commit 7a0a35e

Browse files
Merge remote-tracking branch 'origin/add-filtering-support' into add-filtering-support
2 parents e38e33e + dc04870 commit 7a0a35e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

engine/clients/qdrant/search.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ class QdrantSearcher(BaseSearcher):
1616

1717
@classmethod
1818
def init_client(cls, host, distance, connection_params: dict, search_params: dict):
19-
cls.client: QdrantClient = QdrantClient(host, prefer_grpc=False, **connection_params)
19+
cls.client: QdrantClient = QdrantClient(
20+
host, prefer_grpc=False, **connection_params
21+
)
2022
cls.search_params = search_params
2123

2224
# Uncomment for gRPC

0 commit comments

Comments
 (0)