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

@@ -6,7 +6,7 @@ from typing_extensions import Self
_T = TypeVar("_T")
@overload
def ord_(dta: str) -> int: ... # type: ignore[misc]
def ord_(dta: str) -> int: ... # type: ignore[overload-overlap]
@overload
def ord_(dta: _T) -> _T: ...
def make_string(seq: str | list[int]) -> str: ...