Skip to content

Commit c4b3acd

Browse files
committed
fix typo
1 parent 91aa161 commit c4b3acd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/test_obj.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def test_obj_groups():
6565
# check to make sure there is signal not just zeros
6666
# assert g.np.ptp(mesh.metadata['face_groups']) > 0
6767

68+
6869
def test_obj_groups_split():
6970
# a wavefront file with groups defined
7071
mesh = g.get_mesh("groups.obj", split_groups=True)

trimesh/exchange/obj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ def _group_by(face_tuples, use_mtl: bool, use_obj: bool, use_group: bool):
707707
# don't do a million string concatenations in loop
708708
grouped[key][3].append(chunk)
709709
# go back and do a join to make a single string
710-
for k in grouped.keys():
710+
for key in grouped.keys():
711711
grouped[key][3] = "\n".join(grouped[key][3])
712712
# return as list
713713
return list(grouped.values())

0 commit comments

Comments
 (0)