From db0d0768d7dd16aa45146901e0e6a160742a7c45 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 14 Apr 2025 15:32:26 -0700 Subject: [PATCH] style: Remove unused import and reorder imports --- aider/coders/patch_flex_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/patch_flex_coder.py b/aider/coders/patch_flex_coder.py index 925e8ee3e..f3b481496 100644 --- a/aider/coders/patch_flex_coder.py +++ b/aider/coders/patch_flex_coder.py @@ -8,10 +8,10 @@ from typing import List, Optional, Tuple # Keep existing imports like dump, Coder, PatchPrompts, DiffError, ActionType from ..dump import dump # noqa: F401 from .base_coder import Coder -from .patch_prompts import PatchPrompts # Import do_replace from editblock_coder from .editblock_coder import do_replace +from .patch_prompts import PatchPrompts # Remove original PatchCoder domain objects and helpers if they exist at the top. # We will redefine or replace these as needed.