Third-party stubs: remove unused type: ignores (#11063)

This commit is contained in:
Alex Waygood
2023-11-23 13:35:45 +00:00
committed by GitHub
parent b04e50d522
commit 1d2fe59e88
21 changed files with 41 additions and 44 deletions

View File

@@ -52,7 +52,7 @@ _HideConsole: TypeAlias = Literal["hide-early", "minimize-early", "hide-late", "
class PYZ(Target):
name: str
cipher: _PyiBlockCipher
dependencies: list[_TOCTuple] # type: ignore[assignment]
dependencies: list[_TOCTuple]
toc: list[_TOCTuple]
code_dict: dict[str, CodeType]
def __init__(self, *tocs: Iterable[_TOCTuple], name: str | None = None, cipher: _PyiBlockCipher = None) -> None: ...