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
+1 -1
View File
@@ -22,7 +22,7 @@ class _SupportsGetItem(Protocol[_T_co]):
class ARC4:
MOD: ClassVar[int]
def KSA(self, key: _Key) -> list[int]: ...
def PRGA(self, S: _SupportsGetItem[int]) -> Generator[int, None, None]: ...
def PRGA(self, S: _SupportsGetItem[int]) -> Generator[int]: ...
def encrypt(self, key: _Key, text: Iterable[int]) -> list[int]: ...
class CryptFilter:
+1 -1
View File
@@ -171,7 +171,7 @@ class SubsetMap:
font: TTFFont
def __init__(self, font: TTFFont) -> None: ...
def __len__(self) -> int: ...
def items(self) -> Generator[Incomplete, None, None]: ...
def items(self) -> Generator[Incomplete]: ...
def pick(self, unicode: int): ...
def pick_glyph(self, glyph): ...
def get_glyph(self, glyph=None, unicode=None, glyph_name=None, glyph_width=None) -> Glyph: ...