Skip to content

Commit

Permalink
address review
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter authored and PeterMitrano committed Feb 15, 2022
1 parent b4ad102 commit eee97a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arm_robots/src/arm_robots/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ def __init__(self,
raise_on_failure: bool = False,
display_goals: bool = True,
force_trigger: float = 9.0,
jacobian_follower: Optional[pyjacobian_follower.JacobianFollower] = None):
jacobian_follower: Optional[pyjacobian_follower.JacobianFollower] = None,
jacobian_not_reached_is_failure: Optional[bool] = True):
super().__init__(robot_namespace, robot_description)
self.jacobian_not_reached_is_failure = True
self.jacobian_not_reached_is_failure = jacobian_not_reached_is_failure
self._max_velocity_scale_factor = 0.1
self.stored_tool_orientations = None
self.raise_on_failure = raise_on_failure
Expand Down

0 comments on commit eee97a3

Please sign in to comment.