Bump flake8-pyi to 23.11.0 (#10997)

This commit is contained in:
Alex Waygood
2023-11-08 16:01:24 +00:00
committed by GitHub
parent b36f3c5229
commit 516f665505
19 changed files with 57 additions and 57 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
from collections.abc import Generator
from collections.abc import Iterator
from typing import Any
from matplotlib.axes import Axes
@@ -15,5 +15,5 @@ class Subplots:
figure_kws: dict[str, Any] | None = None,
target: Axes | Figure | SubFigure | None = None,
) -> Figure: ...
def __iter__(self) -> Generator[dict[str, Any], None, None]: ...
def __iter__(self) -> Iterator[dict[str, Any]]: ...
def __len__(self) -> int: ...