From 82ebb7713a200e4e7135e560efc43faca3f0ef1e Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 24 Sep 2024 12:28:54 -0700 Subject: [PATCH] Return True to indicate successful install even if no module --- aider/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/utils.py b/aider/utils.py index 9c3d03054..b61301cf6 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -346,7 +346,7 @@ def check_pip_install_extra(io, module, prompt, pip_install_cmd, self_update=Fal success, output = run_install(cmd) if success: if not module: - return + return True try: __import__(module) return True