From 48272449bb038e4970387fb56727ea7cb964b68f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 5 Oct 2024 11:36:11 -0700 Subject: [PATCH] style: remove unused exception variable --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index a109adf18..7b3784318 100644 --- a/aider/main.py +++ b/aider/main.py @@ -38,7 +38,7 @@ def check_config_files_for_yes(config_files): print(f"The file {config_file} contains a line starting with 'yes:'") print("Please replace 'yes:' with 'yes-always:' in this file.") found = True - except Exception as e: + except Exception: pass return found