From fb5a32f429ad4df1b2012a1d6c1ac17d029f96b6 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 22 Mar 2025 14:16:55 -0700 Subject: [PATCH] style: Fix trailing whitespace and comma consistency --- aider/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/commands.py b/aider/commands.py index a849c7781..8735d05b7 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -149,7 +149,7 @@ class Commands: ), ( "context", - "Work with surrounding code context for more contextually-aware edits." + "Work with surrounding code context for more contextually-aware edits.", ), ] ) @@ -1129,7 +1129,7 @@ class Commands: def completions_architect(self): raise CommandCompletionException() - + def completions_context(self): raise CommandCompletionException() @@ -1144,7 +1144,7 @@ class Commands: def cmd_architect(self, args): """Enter architect/editor mode using 2 different models. If no prompt provided, switches to architect/editor mode.""" # noqa return self._generic_chat_command(args, "architect") - + def cmd_context(self, args): """Enter context mode to see surrounding code context. If no prompt provided, switches to context mode.""" # noqa return self._generic_chat_command(args, "context")