Skip to content

Commit 250ae83

Browse files
committed
TYP: Remove unnecessary ignore
1 parent 2af8ca7 commit 250ae83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotnine/facets/facet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def make_figure(self) -> tuple[Figure, list[Axes]]:
405405
# Create axes
406406
it = itertools.product(range(self.nrow), range(self.ncol))
407407
for i, (row, col) in enumerate(it):
408-
axsarr[row, col] = figure.add_subplot(gs[i]) # pyright: ignore[reportCallIssue,reportArgumentType]
408+
axsarr[row, col] = figure.add_subplot(gs[i])
409409

410410
# axsarr = np.array([
411411
# figure.add_subplot(gs[i])

0 commit comments

Comments
 (0)