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

@ -41,7 +41,7 @@ class Arc(Shape):
# radius properties
@property
def radii(self) -> Any: # TODO mypy#3004 NDArray[numpy.float64]:
def radii(self) -> Any: # mypy#3004 NDArray[numpy.float64]:
"""
Return the radii `[rx, ry]`
"""
@ -78,7 +78,7 @@ class Arc(Shape):
# arc start/stop angle properties
@property
def angles(self) -> Any: # TODO mypy#3004 NDArray[numpy.float64]:
def angles(self) -> Any: # mypy#3004 NDArray[numpy.float64]:
"""
Return the start and stop angles `[a_start, a_stop]`.
Angles are measured from x-axis after rotation