Skip to content

Commit 50b567b

Browse files
authored
lint: remove a few unused imports (#187)
1 parent a220599 commit 50b567b

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

tests/unit_tests/v2/test_async_pg_vectorstore_index.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from langchain_postgres import PGEngine
1212
from langchain_postgres.v2.async_vectorstore import AsyncPGVectorStore
1313
from langchain_postgres.v2.indexes import (
14-
DEFAULT_INDEX_NAME_SUFFIX,
1514
DistanceStrategy,
1615
HNSWIndex,
1716
IVFFlatIndex,

tests/unit_tests/v2/test_pg_vectorstore_index.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from langchain_postgres import PGEngine, PGVectorStore
1212
from langchain_postgres.v2.indexes import (
13-
DEFAULT_INDEX_NAME_SUFFIX,
1413
DistanceStrategy,
1514
HNSWIndex,
1615
IVFFlatIndex,

tests/unit_tests/v2/test_pg_vectorstore_standard_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import uuid
3-
from typing import AsyncIterator, Iterator
3+
from typing import AsyncIterator
44

55
import pytest
66
import pytest_asyncio

0 commit comments

Comments
 (0)