Skip to content

Commit 8e42af2

Browse files
committed
TYP: Remove unnecessary type ignore
1 parent a134362 commit 8e42af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotnine/geoms/geom_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def _draw_segments(data: pd.DataFrame, ax: Axes, **params: Any):
482482
linestyle = data.loc[indices, "linetype"]
483483

484484
coll = LineCollection(
485-
segments, # pyright: ignore[reportArgumentType]
485+
segments,
486486
edgecolor=edgecolor,
487487
linewidth=linewidth,
488488
linestyle=linestyle,

0 commit comments

Comments
 (0)