We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b7cba3 commit 33a9232Copy full SHA for 33a9232
1 file changed
anki_vector/behavior.py
@@ -293,9 +293,9 @@ async def dock_with_cube(self,
293
if approach_angle is not None:
294
dock_request.use_approach_angle = True
295
dock_request.use_pre_dock_pose = True
296
- dock_request.approach_angle = approach_angle.radians
+ dock_request.approach_angle_rad = approach_angle.radians
297
if distance_from_marker is not None:
298
- dock_request.distance_from_marker = distance_from_marker.distance_mm
+ dock_request.distance_from_marker_mm = distance_from_marker.distance_mm
299
300
return await self.grpc_interface.DockWithCube(dock_request)
301
0 commit comments