From b2969e9441e79b6603302af4cb040e2330b88b50 Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Fri, 25 Apr 2025 10:34:00 -0300 Subject: [PATCH] style: fix linter issue (#2686) --- tests/llm_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/llm_test.py b/tests/llm_test.py index 5db37eedb..f80637c60 100644 --- a/tests/llm_test.py +++ b/tests/llm_test.py @@ -376,6 +376,7 @@ def get_weather_tool_schema(): def test_context_window_exceeded_error_handling(): """Test that litellm.ContextWindowExceededError is converted to LLMContextLengthExceededException.""" from litellm.exceptions import ContextWindowExceededError + from crewai.utilities.exceptions.context_window_exceeding_exception import ( LLMContextLengthExceededException, )