From 821662abcbd67f8eb9183ad612d9a2adc774a6bd Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 21 Mar 2025 11:22:00 -0700 Subject: [PATCH] style: Remove trailing whitespace in base_coder.py --- aider/coders/base_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index ed81282cc..30378a077 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -1036,7 +1036,7 @@ class Coder: except Exception: # Skip platform info if it can't be retrieved pass - + shell_var = "COMSPEC" if os.name == "nt" else "SHELL" shell_val = os.getenv(shell_var) platform_text += f"- Shell: {shell_var}={shell_val}\n"