From 2509f0704f20a8abfe21bb3773663b4c2cc445a2 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 27 Sep 2024 17:10:10 -0700 Subject: [PATCH] style: Fix formatting in commands.py --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 7c41aa93e..d1f6b10f3 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -584,7 +584,7 @@ class Commands: text = document.text_before_cursor # Skip the first word and the space after it - after_command = ' '.join(text.split()[1:]) + after_command = " ".join(text.split()[1:]) # Create a new Document object with the text after the command new_document = Document(after_command, cursor_position=len(after_command))