From bbdc33c4b7758ce65c7707c2d7f0fe2c20603684 Mon Sep 17 00:00:00 2001 From: hsm207 Date: Wed, 7 Feb 2024 12:29:40 +0000 Subject: [PATCH] fix long line --- langchain_weaviate/vectorstores.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/langchain_weaviate/vectorstores.py b/langchain_weaviate/vectorstores.py index c56e2e7..ad1f6d5 100644 --- a/langchain_weaviate/vectorstores.py +++ b/langchain_weaviate/vectorstores.py @@ -100,7 +100,8 @@ def __init__( if not isinstance(client, weaviate.WeaviateClient): raise ValueError( - f"client should be an instance of weaviate.WeaviateClient, got {type(client)}" + "client should be an instance of" + f" weaviate.WeaviateClient, got {type(client)}" ) self._client = client self._index_name = index_name or f"LangChain_{uuid4().hex}"