Closed
Description
Hello,
I have defined a dict wrapper where I override fromkeys method.
I have this method signature
def fromkeys(cls, iterable, value=None):
# type: (Iterable, Union[Any, Callable]) -> DictWrapper
and this give me the following error : No overload variant of "fromkeys" of "dict" matches argument types [typing.Iterable[Any], Union[Any, def (_Any, *_Any) -> Any]]
Thanks !