Skip to content

Commit c66d3c6

Browse files
committed
Fix typo
1 parent 405b6d5 commit c66d3c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_fab/backends/ros/fileserver_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def _dae_mesh_importer(filename, precision):
264264
vertices = [[float(p) for p in positions[i:i + 3]] for i in range(0, len(positions), 3)]
265265

266266
# Parse faces
267-
faces = [int(f) for f in triangle_set_data[::2]] # Ignore normals (ever second item is normal index)
267+
faces = [int(f) for f in triangle_set_data[::2]] # Ignore normals (every second item is normal index)
268268
faces = [faces[i:i + 3] for i in range(0, len(faces), 3)]
269269

270270
# Rebuild vertices and faces using the same logic that other importers

0 commit comments

Comments
 (0)