Skip to content

Commit

Permalink
TYP: Remove unnecessary ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed Jan 2, 2025
1 parent 2af8ca7 commit 250ae83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotnine/facets/facet.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def make_figure(self) -> tuple[Figure, list[Axes]]:
# Create axes
it = itertools.product(range(self.nrow), range(self.ncol))
for i, (row, col) in enumerate(it):
axsarr[row, col] = figure.add_subplot(gs[i]) # pyright: ignore[reportCallIssue,reportArgumentType]
axsarr[row, col] = figure.add_subplot(gs[i])

# axsarr = np.array([
# figure.add_subplot(gs[i])
Expand Down

0 comments on commit 250ae83

Please sign in to comment.