style: Fix formatting in commands.py

This commit is contained in:
Paul Gauthier (aider) 2024-09-27 17:10:10 -07:00
parent 1f56118c99
commit 2509f0704f

View file

@ -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))