refactor: Remove unnecessary strip parameter from tool_output calls

This commit is contained in:
Paul Gauthier 2024-09-03 20:03:11 -07:00 committed by Paul Gauthier (aider)
parent 64effaae68
commit f3cce95419
2 changed files with 2 additions and 2 deletions

View file

@ -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):