Skip to content

Commit 76b2d90

Browse files
committed
Fix imports removed by ruff
1 parent 2ea5a14 commit 76b2d90

File tree

1 file changed

+6
-3
lines changed
  • libs/langchain-mongodb/langchain_mongodb

1 file changed

+6
-3
lines changed

libs/langchain-mongodb/langchain_mongodb/index.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66

77
from pymongo.collection import Collection
88

9-
logger = logging.getLogger(__file__)
10-
11-
129
# Don't break imports for modules that expect these functions
1310
# to be in this module.
11+
from pymongo_search_utils import ( # noqa: F401
12+
create_vector_search_index,
13+
update_vector_search_index,
14+
)
15+
16+
logger = logging.getLogger(__file__)
1417

1518

1619
def _vector_search_index_definition(

0 commit comments

Comments
 (0)