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
@@ -1,6 +1,6 @@
from _typeshed import Incomplete
from typing import Generic, NamedTuple, TypeVar, overload
from typing_extensions import Literal, TypeAlias
from typing_extensions import TypeAlias
from qrcode.image.base import BaseImage
@@ -57,9 +57,9 @@ class QRCode(Generic[GenericImage]):
def print_tty(self, out: Incomplete | None = None) -> None: ...
def print_ascii(self, out: Incomplete | None = None, tty: bool = False, invert: bool = False): ...
@overload
def make_image(self, image_factory: Literal[None] = None, **kwargs) -> GenericImage: ...
def make_image(self, image_factory: None = None, **kwargs) -> GenericImage: ...
@overload
def make_image(self, image_factory: type[GenericImageLocal] | None = None, **kwargs) -> GenericImageLocal: ...
def make_image(self, image_factory: type[GenericImageLocal], **kwargs) -> GenericImageLocal: ...
def is_constrained(self, row: int, col: int) -> bool: ...
def setup_timing_pattern(self) -> None: ...
def setup_position_adjust_pattern(self) -> None: ...