mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 20:35:00 +00:00
fix: Add missing imports for FinishReasonLength and sanity_check_messages
This commit is contained in:
parent
075d4d4210
commit
c79217dd75
1 changed files with 2 additions and 1 deletions
|
@ -7,12 +7,13 @@ from unittest.mock import MagicMock, patch
|
||||||
import git
|
import git
|
||||||
|
|
||||||
from aider.coders import Coder
|
from aider.coders import Coder
|
||||||
from aider.coders.base_coder import UnknownEditFormat
|
from aider.coders.base_coder import UnknownEditFormat, FinishReasonLength
|
||||||
from aider.dump import dump # noqa: F401
|
from aider.dump import dump # noqa: F401
|
||||||
from aider.io import InputOutput
|
from aider.io import InputOutput
|
||||||
from aider.models import Model
|
from aider.models import Model
|
||||||
from aider.repo import GitRepo
|
from aider.repo import GitRepo
|
||||||
from aider.utils import GitTemporaryDirectory
|
from aider.utils import GitTemporaryDirectory
|
||||||
|
from aider.sendchat import sanity_check_messages
|
||||||
|
|
||||||
|
|
||||||
class TestCoder(unittest.TestCase):
|
class TestCoder(unittest.TestCase):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue