Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jaceksan committed May 22, 2024
1 parent dce52a8 commit a65c58c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libs/community/langchain_community/vectorstores/duckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import json
import uuid
from typing import Any, Iterable, List, Optional, Type
import warnings
from typing import Any, Iterable, List, Optional, Type

from langchain_core.documents import Document
from langchain_core.embeddings import Embeddings
Expand Down Expand Up @@ -150,7 +150,8 @@ def add_texts(
except ImportError:
warnings.warn(
"Unable to import pandas. "
"Please install it with `pip install -U pandas` to improve performance of add_texts()."
"Please install it with `pip install -U pandas` "
"to improve performance of add_texts()."
)

# Extract ids from kwargs or generate new ones if not provided
Expand Down

0 comments on commit a65c58c

Please sign in to comment.