chore(cli,standard-tests,text-splitters): fix some ruff TC rules (#33934)

Co-authored-by: Mason Daugherty <mason@langchain.dev>
This commit is contained in:
Christophe Bornet
2025-11-12 20:06:31 +01:00
committed by GitHub
parent fbe32c8e89
commit ef79c26f18
12 changed files with 56 additions and 26 deletions

View File

@@ -2,14 +2,18 @@
from __future__ import annotations
from typing import TYPE_CHECKING
import pytest
from langchain_core.language_models.chat_models import BaseChatModel
from langchain_tests.integration_tests import ChatModelIntegrationTests
from langchain_tests.unit_tests import ChatModelUnitTests
from .custom_chat_model import ChatParrotLink
if TYPE_CHECKING:
from langchain_core.language_models.chat_models import BaseChatModel
class TestChatParrotLinkUnit(ChatModelUnitTests):
@property