Skip to content

Commit fb5a32f

Browse files
committed
style: Fix trailing whitespace and comma consistency
1 parent 75dfd45 commit fb5a32f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

aider/commands.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def cmd_chat_mode(self, args):
149149
),
150150
(
151151
"context",
152-
"Work with surrounding code context for more contextually-aware edits."
152+
"Work with surrounding code context for more contextually-aware edits.",
153153
),
154154
]
155155
)
@@ -1129,7 +1129,7 @@ def completions_code(self):
11291129

11301130
def completions_architect(self):
11311131
raise CommandCompletionException()
1132-
1132+
11331133
def completions_context(self):
11341134
raise CommandCompletionException()
11351135

@@ -1144,7 +1144,7 @@ def cmd_code(self, args):
11441144
def cmd_architect(self, args):
11451145
"""Enter architect/editor mode using 2 different models. If no prompt provided, switches to architect/editor mode.""" # noqa
11461146
return self._generic_chat_command(args, "architect")
1147-
1147+
11481148
def cmd_context(self, args):
11491149
"""Enter context mode to see surrounding code context. If no prompt provided, switches to context mode.""" # noqa
11501150
return self._generic_chat_command(args, "context")

0 commit comments

Comments
 (0)