Skip to content

Commit

Permalink
fix: type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
engnadeau committed Aug 23, 2022
1 parent 3b4ed0d commit e2c3c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybotics/link.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def displace(self, q: float = 0) -> npt.NDArray[np.float64]:
:return vector of new displacement state
"""
v = np.copy(self.vector)
v = np.copy(self.vector) # type: ignore
v[2] += q
return v

Expand Down

0 comments on commit e2c3c53

Please sign in to comment.