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