From 444416638a5e977b9ef5be45d5410dc33a53c45b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 27 Aug 2024 09:02:20 -0700 Subject: [PATCH] fix: Rename `run_interactive_command` to `run_interactive_command_pexpect` --- aider/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/utils.py b/aider/utils.py index a7f91406d..f06765dec 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -15,7 +15,7 @@ from aider.dump import dump # noqa: F401 IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".gif", ".bmp", ".tiff", ".webp"} -def run_interactive_command(command): +def run_interactive_command_pexpect(command): """ Run a shell command interactively using pexpect, capturing all output.