Skip to content

Commit f1b0631

Browse files
committed
Update interface.py
Signed-off-by: shbhmexe <[email protected]>
1 parent 3a97ab5 commit f1b0631

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

SU2_PY/SU2/run/interface.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,9 @@ def run_command(Command):
271271

272272
# Avoid potential deadlocks when a child process writes heavily to stderr:
273273
# read stderr via communicate() while streaming stdout to the console.
274-
proc = subprocess.Popen(Command, shell=True, stdout=sys.stdout, stderr=subprocess.PIPE)
274+
proc = subprocess.Popen(
275+
Command, shell=True, stdout=sys.stdout, stderr=subprocess.PIPE
276+
)
275277
_, stderr = proc.communicate()
276278

277279
return_code = proc.returncode

0 commit comments

Comments
 (0)