Skip to content

Commit d3b0716

Browse files
committed
black
1 parent f704dc6 commit d3b0716

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

examples/07-python-operators/02-python_operators_with_dependencies.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,13 @@
132132
if os.name == "nt" and not os.path.exists(
133133
os.path.join(plugin_path, "assets", "gltf_sites_winx64.zip")
134134
):
135-
cmd_file = os.path.join(folder_root, "docs", "source", "user_guide", "create_sites_for_python_operators.ps1")
135+
cmd_file = os.path.join(
136+
folder_root,
137+
"docs",
138+
"source",
139+
"user_guide",
140+
"create_sites_for_python_operators.ps1"
141+
)
136142
args = [
137143
"powershell",
138144
cmd_file,
@@ -157,7 +163,13 @@
157163
elif os.name == "posix" and not os.path.exists(
158164
os.path.join(plugin_path, "assets", "gltf_sites_linx64.zip")
159165
):
160-
cmd_file = os.path.join(folder_root, "docs", "source", "user_guide", "create_sites_for_python_operators.sh")
166+
cmd_file = os.path.join(
167+
folder_root,
168+
"docs",
169+
"source",
170+
"user_guide",
171+
"create_sites_for_python_operators.sh"
172+
)
161173
run_cmd = f"{cmd_file}"
162174
args = (
163175
f' -pluginpath "{plugin_path}" '

0 commit comments

Comments
 (0)