Skip to content

Commit

Permalink
fix: Unused "type: ignore" comment
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 23, 2022
1 parent 1f0cc03 commit e138e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybotics/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def vector_2_matrix(
# iterate through rotation order
# build rotation matrix
transform_matrix = np.eye(4)
for axis, value in zip(convention, rotation_component): # type: ignore
for axis, value in zip(convention, rotation_component):
current_rotation = globals()[f"rotation_matrix_{axis}"](value)
transform_matrix = np.dot(transform_matrix, current_rotation)

Expand Down

0 comments on commit e138e6d

Please sign in to comment.