mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
refac
This commit is contained in:
parent
f1ba68e2a2
commit
602094aca3
3 changed files with 5 additions and 2 deletions
3
aider/coders/__init__.py
Normal file
3
aider/coders/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from .base import Coder
|
||||||
|
|
||||||
|
__all__ = [Coder]
|
|
@ -18,7 +18,7 @@ from aider import diffs, editors, models, prompts, utils
|
||||||
from aider.commands import Commands
|
from aider.commands import Commands
|
||||||
from aider.repomap import RepoMap
|
from aider.repomap import RepoMap
|
||||||
|
|
||||||
from .dump import dump # noqa: F401
|
from ..dump import dump # noqa: F401
|
||||||
|
|
||||||
|
|
||||||
class MissingAPIKeyError(ValueError):
|
class MissingAPIKeyError(ValueError):
|
|
@ -5,7 +5,7 @@ import configargparse
|
||||||
import git
|
import git
|
||||||
|
|
||||||
from aider import __version__, models
|
from aider import __version__, models
|
||||||
from aider.coder import Coder
|
from aider.coders import Coder
|
||||||
from aider.io import InputOutput
|
from aider.io import InputOutput
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue