Skip to content

Commit 6c1d3f0

Browse files
committed
Fix kinematics types
1 parent 460ab12 commit 6c1d3f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roboticstoolbox/robot/RobotKinematics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def partial_fkine0(
480480
def jacob0_analytical(
481481
self: KinematicsProtocol,
482482
q: ArrayLike,
483-
representation: L["rpy/xyz", "rpy/zyx", "eul", "exp"] = "rpy/xyz",
483+
representation: L["rpy/xyz", "rpy/zyx", "eul", "exp"] = "rpy/xyz", # noqa
484484
end: Union[str, Link, Gripper, None] = None,
485485
start: Union[str, Link, Gripper, None] = None,
486486
tool: Union[NDArray, SE3, None] = None,
@@ -556,7 +556,7 @@ def ik_LM(
556556
mask: Union[NDArray, None] = None,
557557
joint_limits: bool = True,
558558
k: float = 1.0,
559-
method: L["chan", "wampler", "sugihara"] = "chan",
559+
method: L["chan", "wampler", "sugihara"] = "chan", # noqa
560560
) -> Tuple[NDArray, int, int, int, float]:
561561
r"""
562562
Fast levenberg-Marquadt Numerical Inverse Kinematics Solver
@@ -1010,7 +1010,7 @@ def ikine_LM(
10101010
joint_limits: bool = True,
10111011
seed: Union[int, None] = None,
10121012
k: float = 1.0,
1013-
method: L["chan", "wampler", "sugihara"] = "chan",
1013+
method: L["chan", "wampler", "sugihara"] = "chan", # noqa
10141014
kq: float = 0.0,
10151015
km: float = 0.0,
10161016
ps: float = 0.0,

0 commit comments

Comments
 (0)