Update most test/lint dependencies (#15582)

This commit is contained in:
renovate[bot]
2026-04-01 17:54:51 +02:00
committed by GitHub
parent 8ffc43610f
commit 8b31f2639e
142 changed files with 310 additions and 357 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ class PyPNGImage(base.BaseImage):
def get_image(self, **kwargs: Any) -> _Writer: ...
def drawrect(self, row: int, col: int) -> None: ...
def save(self, stream: SupportsWrite[bytes], kind: str | None = None) -> None: ...
def rows_iter(self) -> Generator[list[int], Any, None]: ...
def border_rows_iter(self) -> Generator[list[int], Any, None]: ...
def rows_iter(self) -> Generator[list[int], Any]: ...
def border_rows_iter(self) -> Generator[list[int], Any]: ...
PymagingImage = PyPNGImage
+1 -1
View File
@@ -40,7 +40,7 @@ def mode_sizes_for_version(version: int) -> dict[_MODE, int]: ...
def length_in_bits(mode: _MODE, version: int) -> int: ...
def check_version(version: int) -> None: ...
def lost_point(modules: list[list[bool | None]]) -> int: ...
def optimal_data_chunks(data: str | bytes, minimum: int = 4) -> Generator[QRData, None, None]: ...
def optimal_data_chunks(data: str | bytes, minimum: int = 4) -> Generator[QRData]: ...
def to_bytestring(data: str | bytes) -> bytes: ...
def optimal_mode(data: bytes) -> _SupportedMode: ...