mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 02:34:59 +00:00
style: Fix trailing whitespace and comma consistency
This commit is contained in:
parent
75dfd4505b
commit
fb5a32f429
1 changed files with 3 additions and 3 deletions
|
@ -149,7 +149,7 @@ class Commands:
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"context",
|
"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):
|
def completions_architect(self):
|
||||||
raise CommandCompletionException()
|
raise CommandCompletionException()
|
||||||
|
|
||||||
def completions_context(self):
|
def completions_context(self):
|
||||||
raise CommandCompletionException()
|
raise CommandCompletionException()
|
||||||
|
|
||||||
|
@ -1144,7 +1144,7 @@ class Commands:
|
||||||
def cmd_architect(self, args):
|
def cmd_architect(self, args):
|
||||||
"""Enter architect/editor mode using 2 different models. If no prompt provided, switches to architect/editor mode.""" # noqa
|
"""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")
|
return self._generic_chat_command(args, "architect")
|
||||||
|
|
||||||
def cmd_context(self, args):
|
def cmd_context(self, args):
|
||||||
"""Enter context mode to see surrounding code context. If no prompt provided, switches to context mode.""" # noqa
|
"""Enter context mode to see surrounding code context. If no prompt provided, switches to context mode.""" # noqa
|
||||||
return self._generic_chat_command(args, "context")
|
return self._generic_chat_command(args, "context")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue