From b79c09cf589f10d89d6256ff936e80c7db77a941 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 8 Nov 2024 10:01:45 -0800 Subject: [PATCH] refactor: Remove unused CACHE import from test_sendchat.py --- tests/basic/test_sendchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_sendchat.py b/tests/basic/test_sendchat.py index 61b2056ec..a74b2483d 100644 --- a/tests/basic/test_sendchat.py +++ b/tests/basic/test_sendchat.py @@ -3,7 +3,7 @@ from unittest.mock import MagicMock, patch from aider.exceptions import LiteLLMExceptions from aider.llm import litellm -from aider.sendchat import CACHE, send_completion, simple_send_with_retries +from aider.sendchat import send_completion, simple_send_with_retries class PrintCalled(Exception):