We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48116eb commit 1599a8cCopy full SHA for 1599a8c
aegis_grpc/python_client/aegis_grpc_client/grpc_client.py
@@ -287,7 +287,7 @@ async def goto_pose(
287
Move robot to specified TCP pose.
288
289
Args:
290
- pose: Target Pose with position and orientation
+ pose: Target Pose with position and orientation (quaternion)
291
292
Returns:
293
(success, message) tuple
@@ -322,8 +322,8 @@ async def goto_pose(
322
323
async def goto_joints(
324
self,
325
- names: list[str],
326
- positions: Union[list[float], np.ndarray],
+ names: tuple[str],
+ positions: Union[tuple[float], np.ndarray],
327
) -> tuple[bool, str]:
328
"""
329
Move robot to specified joint configuration.
0 commit comments