From be6811b29a388c8170f8c7ee5c049627c9dfbab0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 26 Dec 2024 09:59:05 -0500 Subject: [PATCH] fix: Correct import path for Coder in commands.py --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 225667b42..b8b111156 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1011,7 +1011,7 @@ class Commands: return self.coder.event("interactive help") - from aider.coders import Coder + from aider.coders.base_coder import Coder if not self.help: res = install_help_extra(self.io)