refactor: Remove unused CACHE import from test_sendchat.py

This commit is contained in:
Paul Gauthier (aider) 2024-11-08 10:01:45 -08:00
parent c9dfe5daff
commit b79c09cf58

View file

@ -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):