We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af8ca7 commit 250ae83Copy full SHA for 250ae83
plotnine/facets/facet.py
@@ -405,7 +405,7 @@ def make_figure(self) -> tuple[Figure, list[Axes]]:
405
# Create axes
406
it = itertools.product(range(self.nrow), range(self.ncol))
407
for i, (row, col) in enumerate(it):
408
- axsarr[row, col] = figure.add_subplot(gs[i]) # pyright: ignore[reportCallIssue,reportArgumentType]
+ axsarr[row, col] = figure.add_subplot(gs[i])
409
410
# axsarr = np.array([
411
# figure.add_subplot(gs[i])
0 commit comments