style: Run linter and fix import formatting in base_coder.py and models.py

This commit is contained in:
Paul Gauthier (aider) 2025-02-04 11:45:49 -08:00
parent 74da63e3ca
commit 354630770b
2 changed files with 2 additions and 5 deletions

View file

@ -27,10 +27,10 @@ from aider.history import ChatSummary
from aider.io import ConfirmGroup, InputOutput from aider.io import ConfirmGroup, InputOutput
from aider.linter import Linter from aider.linter import Linter
from aider.llm import litellm from aider.llm import litellm
from aider.models import RETRY_TIMEOUT
from aider.repo import ANY_GIT_ERROR, GitRepo from aider.repo import ANY_GIT_ERROR, GitRepo
from aider.repomap import RepoMap from aider.repomap import RepoMap
from aider.run_cmd import run_cmd from aider.run_cmd import run_cmd
from aider.models import RETRY_TIMEOUT
from aider.utils import format_content, format_messages, format_tokens, is_image_file from aider.utils import format_content, format_messages, format_tokens, is_image_file
from ..dump import dump # noqa: F401 from ..dump import dump # noqa: F401

View file

@ -17,10 +17,7 @@ from PIL import Image
from aider.dump import dump # noqa: F401 from aider.dump import dump # noqa: F401
from aider.llm import litellm from aider.llm import litellm
from aider.sendchat import ( from aider.sendchat import ensure_alternating_roles, sanity_check_messages
ensure_alternating_roles,
sanity_check_messages,
)
RETRY_TIMEOUT = 60 RETRY_TIMEOUT = 60