mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
8 lines
242 B
Python
8 lines
242 B
Python
|
"""Light weight unit test that attempts to import SQLDocStore/SQLStrStore.
|
||
|
"""
|
||
|
|
||
|
|
||
|
def test_import_storage() -> None:
|
||
|
"""Attempt to import storage modules."""
|
||
|
from langchain_community.storage.sql import SQLDocStore, SQLStrStore # noqa
|