Skip to content

Commit

Permalink
Added spaces after commas.
Browse files Browse the repository at this point in the history
  • Loading branch information
Candoran2 committed Nov 2, 2021
1 parent 721ad3b commit 91502d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_scene_niftools/modules/nif_import/armature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def import_bone_bind(self, n_block, b_armature_data, n_armature, b_parent_bone=N
b_bind = math.nif_bind_to_blender_bind(n_bind)

# set the bone matrix - but set the tail first to prevent issues with zero-length bone
b_edit_bone.tail = mathutils.Vector([0,0,1])
b_edit_bone.tail = mathutils.Vector([0, 0, 1])
b_edit_bone.matrix = b_bind
# link to parent
if b_parent_bone:
Expand Down

0 comments on commit 91502d9

Please sign in to comment.