mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
style: Format code with linter
This commit is contained in:
parent
359e4129c6
commit
b229661d0a
1 changed files with 5 additions and 1 deletions
|
@ -40,7 +40,11 @@ class EditBlockCoder(Coder):
|
||||||
if self.io.confirm_ask("Do you want to run this suggested shell command?"):
|
if self.io.confirm_ask("Do you want to run this suggested shell command?"):
|
||||||
try:
|
try:
|
||||||
result = subprocess.run(
|
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)
|
self.io.tool_output(result.stdout)
|
||||||
passed.append(edit)
|
passed.append(edit)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue