Remove unused # type: ignore comments (#3325)

This commit is contained in:
Sebastian Rittau
2019-10-09 19:27:18 +02:00
committed by Jelle Zijlstra
parent bd7222c396
commit 07c8675ba5
7 changed files with 20 additions and 34 deletions

View File

@@ -62,7 +62,7 @@ class UserString(Sequence[UserString]):
def upper(self: _UST) -> _UST: ...
def zfill(self: _UST, width: int) -> _UST: ...
class MutableString(UserString, MutableSequence[MutableString]): # type: ignore
class MutableString(UserString, MutableSequence[MutableString]):
@overload
def __getitem__(self: _MST, i: int) -> _MST: ...
@overload