mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
style: fix import order in base_coder.py
This commit is contained in:
parent
608a43402c
commit
e5c0ebd0a0
1 changed files with 2 additions and 1 deletions
|
@ -21,9 +21,9 @@ from typing import List
|
|||
|
||||
from aider import __version__, models, prompts, urls, utils
|
||||
from aider.analytics import Analytics
|
||||
from aider.coders.base_coder import UnknownEditFormat
|
||||
from aider.commands import Commands
|
||||
from aider.exceptions import LiteLLMExceptions
|
||||
from aider.coders.base_coder import UnknownEditFormat
|
||||
from aider.history import ChatSummary
|
||||
from aider.io import ConfirmGroup, InputOutput
|
||||
from aider.linter import Linter
|
||||
|
@ -46,6 +46,7 @@ class UnknownEditFormat(ValueError):
|
|||
f"Unknown edit format {edit_format}. Valid formats are: {', '.join(valid_formats)}"
|
||||
)
|
||||
|
||||
|
||||
class MissingAPIKeyError(ValueError):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue