remove TODO labels from mypy #3004 comments

This commit is contained in:
Jan Petykiewicz 2023-07-17 21:25:52 -07:00 committed by jan
commit e47f9b76b1
7 changed files with 9 additions and 9 deletions

View file

@ -115,7 +115,7 @@ class PivotableImpl(Pivotable, metaclass=ABCMeta):
pivot = numpy.array(pivot, dtype=float)
cast(Positionable, self).translate(-pivot)
cast(Rotatable, self).rotate(rotation)
self.offset = numpy.dot(rotation_matrix_2d(rotation), self.offset) # type: ignore # TODO: mypy#3004
self.offset = numpy.dot(rotation_matrix_2d(rotation), self.offset) # type: ignore # mypy#3004
cast(Positionable, self).translate(+pivot)
return self