Skip to content

Commit a87a572

Browse files
authored
typing: Remove outdated ty ignore comment leading to ty warning (#740)
1 parent c17f009 commit a87a572

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/trajectories/_plotters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class ContourCirclesPlotter(MultiPlotter):
126126

127127
def __init__(self) -> None:
128128
radiuses = [1.0, 2.5, 4, 5.5, 7, 8.5]
129-
colormap = cm.inferno_r # ty:ignore[unresolved-attribute]
129+
colormap = cm.inferno_r
130130
norm = mcolors.Normalize(vmin=-1, vmax=max(radiuses))
131131
plotters = tuple(CirclePlotter(radius, colormap(norm(radius))) for radius in radiuses)
132132
super().__init__(plotters)

0 commit comments

Comments
 (0)