mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
chore: Run linter and fix import order in commands.py
This commit is contained in:
parent
8e9c75b6f8
commit
98be67442e
1 changed files with 4 additions and 2 deletions
|
@ -13,12 +13,11 @@ from PIL import Image, ImageGrab
|
||||||
from prompt_toolkit.completion import Completion, PathCompleter
|
from prompt_toolkit.completion import Completion, PathCompleter
|
||||||
from prompt_toolkit.document import Document
|
from prompt_toolkit.document import Document
|
||||||
|
|
||||||
from aider.io import CommandCompletionException
|
|
||||||
|
|
||||||
from aider import models, prompts, voice
|
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 CommandCompletionException
|
||||||
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
|
||||||
|
@ -1092,14 +1091,17 @@ class Commands:
|
||||||
|
|
||||||
def completions_ask(self):
|
def completions_ask(self):
|
||||||
from aider.io import CommandCompletionException
|
from aider.io import CommandCompletionException
|
||||||
|
|
||||||
raise CommandCompletionException()
|
raise CommandCompletionException()
|
||||||
|
|
||||||
def completions_code(self):
|
def completions_code(self):
|
||||||
from aider.io import CommandCompletionException
|
from aider.io import CommandCompletionException
|
||||||
|
|
||||||
raise CommandCompletionException()
|
raise CommandCompletionException()
|
||||||
|
|
||||||
def completions_architect(self):
|
def completions_architect(self):
|
||||||
from aider.io import CommandCompletionException
|
from aider.io import CommandCompletionException
|
||||||
|
|
||||||
raise CommandCompletionException()
|
raise CommandCompletionException()
|
||||||
|
|
||||||
def cmd_ask(self, args):
|
def cmd_ask(self, args):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue