mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +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:
|
while True:
|
||||||
try:
|
try:
|
||||||
completer_instance = FileContentCompleter(self.fnames)
|
completer_instance = FileContentCompleter(self.fnames)
|
||||||
if multiline_input:
|
if multiline_input:
|
||||||
line = prompt(". ", completer=completer_instance)
|
line = prompt(". ", completer=completer_instance)
|
||||||
else:
|
else:
|
||||||
line = prompt("> ", completer=completer_instance)
|
line = prompt("> ", completer=completer_instance)
|
||||||
except EOFError:
|
except EOFError:
|
||||||
return
|
return
|
||||||
if line.strip() == "{" and not multiline_input:
|
if line.strip() == "{" and not multiline_input:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue