mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 06:44:59 +00:00
fixed indent
This commit is contained in:
parent
59e664e220
commit
fe222d8943
1 changed files with 6 additions and 6 deletions
10
coder.py
10
coder.py
|
@ -156,11 +156,11 @@ class Coder:
|
|||
|
||||
while True:
|
||||
try:
|
||||
completer_instance = FileContentCompleter(self.fnames)
|
||||
if multiline_input:
|
||||
line = prompt(". ", completer=completer_instance)
|
||||
else:
|
||||
line = prompt("> ", completer=completer_instance)
|
||||
completer_instance = FileContentCompleter(self.fnames)
|
||||
if multiline_input:
|
||||
line = prompt(". ", completer=completer_instance)
|
||||
else:
|
||||
line = prompt("> ", completer=completer_instance)
|
||||
except EOFError:
|
||||
return
|
||||
if line.strip() == "{" and not multiline_input:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue