From b229661d0a2ed4416c48752b8fd8239a55694ac3 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 20 Aug 2024 17:31:40 -0700 Subject: [PATCH] style: Format code with linter --- aider/coders/editblock_coder.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aider/coders/editblock_coder.py b/aider/coders/editblock_coder.py index 04a1b9e9f..9c12618e0 100644 --- a/aider/coders/editblock_coder.py +++ b/aider/coders/editblock_coder.py @@ -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)