Skip to content

Commit

Permalink
(fix) Fixed inverse kinematics unpacking typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mcaravati committed Aug 23, 2023
1 parent c3396a3 commit b51d788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sp-dr-server/server/OSCServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ def torque_handler(self, *args) -> None:
def speed_handler(self, *args) -> None:
return super().speed_handler(args)

def inverse_kinematics_handler(self, args) -> None:
def inverse_kinematics_handler(self, *args) -> None:
return super().inverse_kinematics_handler(args)

0 comments on commit b51d788

Please sign in to comment.