From cfe9c86edd709e2beb5fd55220cda2691ba91393 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Feb 2025 12:03:10 -0800 Subject: [PATCH] fix: Remove unused 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 27effc87f..af4f1b7db 100644 --- a/tests/basic/test_sendchat.py +++ b/tests/basic/test_sendchat.py @@ -4,7 +4,7 @@ from unittest.mock import MagicMock, patch from aider.exceptions import LiteLLMExceptions from aider.llm import litellm from aider.models import Model -from aider.sendchat import send_completion, simple_send_with_retries +from aider.sendchat import simple_send_with_retries class PrintCalled(Exception):