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
+3 -3
View File
@@ -3,7 +3,7 @@ import types
import zipimport
from _typeshed import Incomplete
from abc import ABCMeta
from collections.abc import Callable, Generator, Iterable, Sequence
from collections.abc import Callable, Generator, Iterable, Iterator, Sequence
from io import BytesIO
from re import Pattern
from typing import IO, Any, ClassVar, Protocol, TypeVar, overload, type_check_only
@@ -32,7 +32,7 @@ class WorkingSet:
def iter_entry_points(self, group: str, name: str | None = None) -> Generator[EntryPoint, None, None]: ...
def add_entry(self, entry: str) -> None: ...
def __contains__(self, dist: Distribution) -> bool: ...
def __iter__(self) -> Generator[Distribution, None, None]: ...
def __iter__(self) -> Iterator[Distribution]: ...
def find(self, req: Requirement) -> Distribution | None: ...
def resolve(
self,
@@ -61,7 +61,7 @@ class Environment:
self, search_path: Sequence[str] | None = None, platform: str | None = ..., python: str | None = ...
) -> None: ...
def __getitem__(self, project_name: str) -> list[Distribution]: ...
def __iter__(self) -> Generator[str, None, None]: ...
def __iter__(self) -> Iterator[str]: ...
def add(self, dist: Distribution) -> None: ...
def remove(self, dist: Distribution) -> None: ...
def can_add(self, dist: Distribution) -> bool: ...