Skip to content

Commit

Permalink
fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
hsm207 committed Feb 7, 2024
1 parent 8f5b8bf commit bbdc33c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion langchain_weaviate/vectorstores.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit bbdc33c

Please sign in to comment.