mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
fix: Remove unused imports in commands.py
This commit is contained in:
parent
761fb93aba
commit
60708a7fd7
1 changed files with 1 additions and 4 deletions
|
@ -7,8 +7,6 @@ import tempfile
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from os.path import expanduser
|
from os.path import expanduser
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from unittest import mock
|
|
||||||
|
|
||||||
import pyperclip
|
import pyperclip
|
||||||
from PIL import Image, ImageGrab
|
from PIL import Image, ImageGrab
|
||||||
from prompt_toolkit.completion import Completion, PathCompleter
|
from prompt_toolkit.completion import Completion, PathCompleter
|
||||||
|
@ -18,12 +16,11 @@ from aider import models, prompts, voice
|
||||||
from aider.editor import pipe_editor
|
from aider.editor import pipe_editor
|
||||||
from aider.format_settings import format_settings
|
from aider.format_settings import format_settings
|
||||||
from aider.help import Help, install_help_extra
|
from aider.help import Help, install_help_extra
|
||||||
from aider.io import InputOutput
|
|
||||||
from aider.llm import litellm
|
from aider.llm import litellm
|
||||||
from aider.repo import ANY_GIT_ERROR
|
from aider.repo import ANY_GIT_ERROR
|
||||||
from aider.run_cmd import run_cmd
|
from aider.run_cmd import run_cmd
|
||||||
from aider.scrape import Scraper, install_playwright
|
from aider.scrape import Scraper, install_playwright
|
||||||
from aider.utils import GitTemporaryDirectory, is_image_file
|
from aider.utils import is_image_file
|
||||||
|
|
||||||
from .dump import dump # noqa: F401
|
from .dump import dump # noqa: F401
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue