mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
fixed test
This commit is contained in:
parent
e26acbae65
commit
4b69e2b85c
5 changed files with 18 additions and 11 deletions
|
@ -720,7 +720,6 @@ class Coder:
|
|||
def apply_updates(self):
|
||||
try:
|
||||
edited = self.update_files()
|
||||
return edited, None
|
||||
except ValueError as err:
|
||||
err = err.args[0]
|
||||
self.io.tool_error("Malformed response, retrying...")
|
||||
|
@ -733,6 +732,11 @@ class Coder:
|
|||
traceback.print_exc()
|
||||
return None, err
|
||||
|
||||
if edited:
|
||||
for path in sorted(edited):
|
||||
self.io.tool_output(f"Applied edit to {path}")
|
||||
return edited, None
|
||||
|
||||
def parse_partial_args(self):
|
||||
# dump(self.partial_response_function_call)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue