mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
Defaultdict skeleton update: T is unknown when the constructor is invoked so it won't be possible to check this type variable later.
This commit is contained in:
@@ -44,13 +44,13 @@ class defaultdict(dict):
|
||||
def __init__(self, default_factory=None, **kwargs):
|
||||
"""
|
||||
:type default_factory: () -> V
|
||||
:rtype: defaultdict[T, V]
|
||||
:rtype: defaultdict[Any, V]
|
||||
"""
|
||||
pass
|
||||
|
||||
def __missing__(self, key):
|
||||
"""
|
||||
:type key: T
|
||||
:type key: Any
|
||||
:rtype: V
|
||||
"""
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user