diff --git a/libs/community/langchain_community/vectorstores/deeplake_vector_search.py b/libs/community/langchain_community/vectorstores/deeplake_vector_search.py index 54c6bb0324ffe..1a36d4ec09199 100644 --- a/libs/community/langchain_community/vectorstores/deeplake_vector_search.py +++ b/libs/community/langchain_community/vectorstores/deeplake_vector_search.py @@ -45,7 +45,8 @@ def __init__( except Exception as e: try: self.ds = deeplake.query( - f"select * from {self.path}", token=self.token) + f"select * from {self.path}", token=self.token + ) except Exception: raise e else: