From 77a1aa10729ad8a998485343cf801791d8455694 Mon Sep 17 00:00:00 2001 From: alvedder Date: Thu, 23 Jul 2026 22:21:16 +0500 Subject: [PATCH] test(llm): type Anthropic stream context args --- tests/llm/test_backends/test_anthropic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/llm/test_backends/test_anthropic.py b/tests/llm/test_backends/test_anthropic.py index c040df28..365ac01c 100644 --- a/tests/llm/test_backends/test_anthropic.py +++ b/tests/llm/test_backends/test_anthropic.py @@ -494,7 +494,7 @@ async def test_anthropic_backend_passes_timeout_to_stream_request() -> None: """Return the stream object used by the backend.""" return self - async def __aexit__(self, *_args): + async def __aexit__(self, *_args: object) -> bool: """Do not suppress stream errors.""" return False