fix: Remove unused import from test_sendchat.py

This commit is contained in:
Paul Gauthier (aider) 2025-02-04 12:03:10 -08:00
parent ee66044425
commit cfe9c86edd

View file

@ -4,7 +4,7 @@ from unittest.mock import MagicMock, patch
from aider.exceptions import LiteLLMExceptions from aider.exceptions import LiteLLMExceptions
from aider.llm import litellm from aider.llm import litellm
from aider.models import Model 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): class PrintCalled(Exception):