From e0ca601c134d18a4340973f94fdcbe95ff984829 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Wed, 8 Jan 2025 14:31:38 -0500 Subject: [PATCH] remove unnecessary type ignore --- .../langchain_tests/integration_tests/chat_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/standard-tests/langchain_tests/integration_tests/chat_models.py b/libs/standard-tests/langchain_tests/integration_tests/chat_models.py index b726c45d28378..69116b6cfb7a9 100644 --- a/libs/standard-tests/langchain_tests/integration_tests/chat_models.py +++ b/libs/standard-tests/langchain_tests/integration_tests/chat_models.py @@ -1316,7 +1316,7 @@ class Joke(BaseModel): default=None, description="answer to resolve the joke" ) - chat = model.with_structured_output(Joke, **self.structured_output_kwargs) # type: ignore[arg-type] + chat = model.with_structured_output(Joke, **self.structured_output_kwargs) setup_result = chat.invoke( "Give me the setup to a joke about cats, no punchline." )