style: Format code with linter

This commit is contained in:
Paul Gauthier (aider) 2024-08-20 17:31:40 -07:00
parent 359e4129c6
commit b229661d0a

View file

@ -40,7 +40,11 @@ class EditBlockCoder(Coder):
if self.io.confirm_ask("Do you want to run this suggested shell command?"):
try:
result = subprocess.run(
edit, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
edit,
shell=True,
text=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
self.io.tool_output(result.stdout)
passed.append(edit)