From 4d61b596ff00a87b157b32e2d822885af4bd5fa2 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 22 Mar 2025 18:15:17 -0700 Subject: [PATCH] style: Remove trailing whitespace 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 fe55ef279..afe4a117b 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1482,7 +1482,7 @@ class Commands: user_input = pipe_editor(initial_content, suffix="md", editor=self.editor) if user_input.strip(): self.io.set_placeholder(user_input.rstrip()) - + def cmd_edit(self, args=""): "Alias for /editor: Open an editor to write a prompt" return self.cmd_editor(args)