Skip to content

Commit 0febbc7

Browse files
committed
black
1 parent c4c5130 commit 0febbc7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cadquery/occ_impl/exporters/assembly.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
from ..assembly import AssemblyProtocol, toCAF, toVTK
2727
from ..geom import Location
2828

29+
2930
def exportAssembly(assy: AssemblyProtocol, path: str, **kwargs) -> bool:
3031
"""
3132
Export an assembly to a STEP file.
@@ -162,7 +163,7 @@ def exportGLTF(
162163
"""
163164

164165
# map from CadQuery's right-handed +Z up coordinate system to glTF's right-handed +Y up coordinate system
165-
# https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#coordinate-system-and-units
166+
# https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#coordinate-system-and-units
166167
coordinate_system_relation = Location((0, 0, 0), (1, 0, 0), -90)
167168
assy.loc *= coordinate_system_relation
168169

@@ -174,7 +175,7 @@ def exportGLTF(
174175
_, doc = toCAF(assy, True)
175176

176177
writer = RWGltf_CafWriter(TCollection_AsciiString(path), binary)
177-
result = writer.Perform(
178+
result = writer.Perform(
178179
doc, TColStd_IndexedDataMapOfStringString(), Message_ProgressRange()
179180
)
180181

0 commit comments

Comments
 (0)