Skip to content

Commit 3060eae

Browse files
committed
fix lint
1 parent 619d2f5 commit 3060eae

File tree

1 file changed

+3
-1
lines changed
  • packages/python/plotly/plotly/io

1 file changed

+3
-1
lines changed

packages/python/plotly/plotly/io/_orca.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,9 @@ def validate_executable():
11421142
# ### Run with Popen so we get access to stdout and stderr
11431143
with orca_env():
11441144
p = subprocess.Popen(
1145-
executable_list + ["--no-sandbox", "--help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
1145+
executable_list + ["--no-sandbox", "--help"],
1146+
stdout=subprocess.PIPE,
1147+
stderr=subprocess.PIPE,
11461148
)
11471149

11481150
help_result, help_error = p.communicate()

0 commit comments

Comments
 (0)