Skip to content

Commit b9f535e

Browse files
committed
Remove another ignore
1 parent eab9f87 commit b9f535e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_matplotlib/style.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def _random_color(column: int) -> list[float]:
273273
"""Get a random color represented as a list of length 3"""
274274
# GH17525 use common._random_state to avoid resetting the seed
275275
rs = com.random_state(column)
276-
return rs.rand(3).tolist() # type: ignore[return-value]
276+
return rs.rand(3).tolist()
277277

278278

279279
def _is_single_string_color(color: Color) -> bool:

0 commit comments

Comments
 (0)