Skip to content

Commit efb5a32

Browse files
committed
changed float to np.float64
1 parent 255743e commit efb5a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/example/symbolic_ik_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from reachy2_symbolic_ik.utils import go_to_position
1010

1111

12-
def are_joints_correct(placo_ik: IKReachyQP, joints: npt.NDArray[float], goal_pose: npt.NDArray[float]) -> bool:
12+
def are_joints_correct(placo_ik: IKReachyQP, joints: npt.NDArray[np.float64], goal_pose: npt.NDArray[np.float64]) -> bool:
1313
go_to_position(placo_ik, joints, wait=0)
1414
T_torso_tip = placo_ik.robot.get_T_a_b("torso", "r_tip_joint")
1515
position = T_torso_tip[:3, 3]

0 commit comments

Comments
 (0)