Skip to content

Commit

Permalink
ISSUE-7: removed unnecessary enumerate()
Browse files Browse the repository at this point in the history
  • Loading branch information
Brachi committed Sep 18, 2016
1 parent dbbb199 commit a5e132b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion albam/mtframework/blender_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def import_mod(blender_object, file_path, **kwargs):
else:
root = blender_object

for i, mesh in enumerate(meshes):
for mesh in meshes:
bpy.context.scene.objects.link(mesh)
mesh.parent = root
if mod.bone_count:
Expand Down

0 comments on commit a5e132b

Please sign in to comment.