Skip to content

Commit

Permalink
fix: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 23, 2022
1 parent ec60843 commit 678ce55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybotics/kinematic_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _validate_links(
class MDHKinematicChain(KinematicChain):
"""Kinematic Chain of MDH links."""

_links = attr.ib(type=Union[Sequence[MDHLink], npt.NDArray[np.float64]])
_links = attr.ib(type=Sequence[MDHLink])

def __attrs_post_init__(self) -> None:
"""Post-attrs initialization."""
Expand Down

0 comments on commit 678ce55

Please sign in to comment.