From 03dfda782cf2f0724e2323b79407bcf42618a8dc Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 27 Aug 2024 10:41:24 -0700 Subject: [PATCH] style: Fix import order in aider/commands.py --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 345bdfab4..7a5aab566 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -14,9 +14,9 @@ from rich.text import Text from aider import models, prompts, voice from aider.help import Help, install_help_extra from aider.llm import litellm +from aider.run_cmd import run_cmd from aider.scrape import Scraper, install_playwright from aider.utils import is_image_file -from aider.run_cmd import run_cmd from .dump import dump # noqa: F401