From 87a1469c1e37a516899533becb7f6429c9ed28b0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 7 Dec 2024 08:07:28 -0800 Subject: [PATCH] style: fix string quote consistency in env setting split --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 17a2121c2..5d3371810 100644 --- a/aider/main.py +++ b/aider/main.py @@ -465,7 +465,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F if args.set_env: for env_setting in args.set_env: try: - name, value = env_setting.split('=', 1) + name, value = env_setting.split("=", 1) os.environ[name.strip()] = value.strip() except ValueError: io.tool_error(f"Invalid --set-env format: {env_setting}")