Skip to content

Commit

Permalink
Fix goofy typing error due to latest mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Nov 10, 2023
1 parent 06b50d0 commit 0cc2df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coloraide/spaces/achromatic.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def dump(self) -> list[VectorLike] | None: # pragma: no cover
return list(zip(*self.spline.points))
else:
# Strip off the data points used to coerce the spline through the end.
return list(zip(*self.spline.points))[1:-1]
return list(zip(*self.spline.points))[1:-1] # type: ignore[return-value]

@abstractmethod
def convert(self, coords: Vector, **kwargs: Any) -> Vector:
Expand Down

0 comments on commit 0cc2df9

Please sign in to comment.