Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsilver committed Oct 31, 2024
1 parent dcf5511 commit a2d10b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion predicators/pybullet_helpers/ikfast/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ def ikfast_inverse_kinematics(
rot_matrix = matrix_from_quat(base_from_ee.orientation).tolist()

# Sampler for free joints
generator = free_joints_generator(robot, free_joint_infos, max_distance, rng)
generator = free_joints_generator(robot, free_joint_infos, max_distance,
rng)
if max_attempts < np.inf: # pragma: no cover
generator = islice(generator, max_attempts)

Expand Down

0 comments on commit a2d10b7

Please sign in to comment.