style: Fix trailing whitespace and comma consistency

This commit is contained in:
Paul Gauthier (aider) 2025-03-22 14:16:55 -07:00
parent 75dfd4505b
commit fb5a32f429

View file

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