Skip to content

Commit 1599a8c

Browse files
committed
Fix type annotations
1 parent 48116eb commit 1599a8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aegis_grpc/python_client/aegis_grpc_client/grpc_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ async def goto_pose(
287287
Move robot to specified TCP pose.
288288
289289
Args:
290-
pose: Target Pose with position and orientation
290+
pose: Target Pose with position and orientation (quaternion)
291291
292292
Returns:
293293
(success, message) tuple
@@ -322,8 +322,8 @@ async def goto_pose(
322322

323323
async def goto_joints(
324324
self,
325-
names: list[str],
326-
positions: Union[list[float], np.ndarray],
325+
names: tuple[str],
326+
positions: Union[tuple[float], np.ndarray],
327327
) -> tuple[bool, str]:
328328
"""
329329
Move robot to specified joint configuration.

0 commit comments

Comments
 (0)