mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
refactor: Remove unnecessary strip parameter from tool_output calls
This commit is contained in:
parent
64effaae68
commit
f3cce95419
2 changed files with 2 additions and 2 deletions
|
@ -1790,7 +1790,7 @@ class Coder:
|
||||||
self.io.tool_error("The LLM did not conform to the edit format.")
|
self.io.tool_error("The LLM did not conform to the edit format.")
|
||||||
self.io.tool_output(urls.edit_errors)
|
self.io.tool_output(urls.edit_errors)
|
||||||
self.io.tool_output()
|
self.io.tool_output()
|
||||||
self.io.tool_output(str(err), strip=False)
|
self.io.tool_output(str(err))
|
||||||
|
|
||||||
self.reflected_message = str(err)
|
self.reflected_message = str(err)
|
||||||
return edited
|
return edited
|
||||||
|
|
|
@ -756,7 +756,7 @@ class Commands:
|
||||||
if not errors:
|
if not errors:
|
||||||
return
|
return
|
||||||
|
|
||||||
self.io.tool_output(errors, strip=False)
|
self.io.tool_output(errors)
|
||||||
return errors
|
return errors
|
||||||
|
|
||||||
def cmd_run(self, args, add_on_nonzero_exit=False):
|
def cmd_run(self, args, add_on_nonzero_exit=False):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue