nit: lint standard-tests files

This commit is contained in:
Mason Daugherty 2025-07-31 13:15:39 -04:00
parent 4f4e831a44
commit e9bb40f221
No known key found for this signature in database
3 changed files with 5 additions and 13 deletions

View File

@ -9,7 +9,7 @@ class BaseStandardTests(ABC):
:private:
"""
# find path to standard test implementations
# Find path to standard test implementations
comparison_class = None
def explore_bases(cls: type) -> None:

View File

@ -32,9 +32,7 @@ from pytest_benchmark.fixture import BenchmarkFixture # type: ignore[import-unt
from typing_extensions import TypedDict
from vcr.cassette import Cassette
from langchain_tests.unit_tests.chat_models import (
ChatModelTests,
)
from langchain_tests.unit_tests.chat_models import ChatModelTests
from langchain_tests.utils.pydantic import PYDANTIC_MAJOR_VERSION

View File

@ -12,15 +12,9 @@ from langchain_core.load import dumpd, load
from langchain_core.runnables import RunnableBinding
from langchain_core.tools import BaseTool, tool
from pydantic import BaseModel, Field, SecretStr
from pydantic.v1 import (
BaseModel as BaseModelV1,
)
from pydantic.v1 import (
Field as FieldV1,
)
from pydantic.v1 import (
ValidationError as ValidationErrorV1,
)
from pydantic.v1 import BaseModel as BaseModelV1
from pydantic.v1 import Field as FieldV1
from pydantic.v1 import ValidationError as ValidationErrorV1
from pytest_benchmark.fixture import BenchmarkFixture # type: ignore[import-untyped]
from syrupy import SnapshotAssertion