mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Remove unused # type: ignore comments (#3325)
This commit is contained in:
committed by
Jelle Zijlstra
parent
bd7222c396
commit
07c8675ba5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user