##// END OF EJS Templates
MAINT: fix typing mypy 1.0 (#13933)
Matthias Bussonnier -
r28093:7dab272e merge
parent child Browse files
Show More
@@ -609,8 +609,8 b' SUPPORTED_EXTERNAL_GETITEM = {'
609
609
610 BUILTIN_GETITEM: Set[InstancesHaveGetItem] = {
610 BUILTIN_GETITEM: Set[InstancesHaveGetItem] = {
611 dict,
611 dict,
612 str,
612 str, # type: ignore[arg-type]
613 bytes,
613 bytes, # type: ignore[arg-type]
614 list,
614 list,
615 tuple,
615 tuple,
616 collections.defaultdict,
616 collections.defaultdict,
@@ -619,7 +619,7 b' BUILTIN_GETITEM: Set[InstancesHaveGetItem] = {'
619 collections.ChainMap,
619 collections.ChainMap,
620 collections.UserDict,
620 collections.UserDict,
621 collections.UserList,
621 collections.UserList,
622 collections.UserString,
622 collections.UserString, # type: ignore[arg-type]
623 _DummyNamedTuple,
623 _DummyNamedTuple,
624 _IdentitySubscript,
624 _IdentitySubscript,
625 }
625 }
General Comments 0
You need to be logged in to leave comments. Login now