mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
style: Ran the linter
This commit is contained in:
parent
f5da41216c
commit
1dd1f7eb22
1 changed files with 7 additions and 2 deletions
|
@ -23,7 +23,6 @@ from rich.console import Console, Text
|
||||||
from rich.markdown import Markdown
|
from rich.markdown import Markdown
|
||||||
|
|
||||||
from aider import __version__, models, prompts, urls
|
from aider import __version__, models, prompts, urls
|
||||||
from aider.utils import format_tokens, utils
|
|
||||||
from aider.commands import Commands
|
from aider.commands import Commands
|
||||||
from aider.history import ChatSummary
|
from aider.history import ChatSummary
|
||||||
from aider.io import ConfirmGroup, InputOutput
|
from aider.io import ConfirmGroup, InputOutput
|
||||||
|
@ -33,7 +32,13 @@ from aider.mdstream import MarkdownStream
|
||||||
from aider.repo import GitRepo
|
from aider.repo import GitRepo
|
||||||
from aider.repomap import RepoMap
|
from aider.repomap import RepoMap
|
||||||
from aider.sendchat import retry_exceptions, send_completion
|
from aider.sendchat import retry_exceptions, send_completion
|
||||||
from aider.utils import format_content, format_messages, is_image_file
|
from aider.utils import (
|
||||||
|
format_content,
|
||||||
|
format_messages,
|
||||||
|
format_tokens,
|
||||||
|
is_image_file,
|
||||||
|
utils,
|
||||||
|
)
|
||||||
|
|
||||||
from ..dump import dump # noqa: F401
|
from ..dump import dump # noqa: F401
|
||||||
from .chat_chunks import ChatChunks
|
from .chat_chunks import ChatChunks
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue