mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25: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_output(urls.edit_errors)
|
||||
self.io.tool_output()
|
||||
self.io.tool_output(str(err), strip=False)
|
||||
self.io.tool_output(str(err))
|
||||
|
||||
self.reflected_message = str(err)
|
||||
return edited
|
||||
|
|
|
@ -756,7 +756,7 @@ class Commands:
|
|||
if not errors:
|
||||
return
|
||||
|
||||
self.io.tool_output(errors, strip=False)
|
||||
self.io.tool_output(errors)
|
||||
return errors
|
||||
|
||||
def cmd_run(self, args, add_on_nonzero_exit=False):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue