From c7fe86021c5debd21e30711db84caf88e8744777 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 22 Mar 2025 18:32:32 -0700 Subject: [PATCH] style: Replace single quotes with double quotes in main.py --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 2b26c74a7..a52d04aeb 100644 --- a/aider/main.py +++ b/aider/main.py @@ -1110,7 +1110,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F coder.ok_to_warm_cache = False # Set the placeholder if provided - if hasattr(switch, 'placeholder') and switch.placeholder is not None: + if hasattr(switch, "placeholder") and switch.placeholder is not None: io.placeholder = switch.placeholder kwargs = dict(io=io, from_coder=coder)