Repository URL to install this package:
|
Version:
2.3.0 ▾
|
from frozendict import frozendict # error: Library stubs not installed for "frozendict" (or incompatible with Python 3.10)
reveal_type(dict.fromkeys("abc", 0)) # Revealed type is "builtins.dict[builtins.str*, builtins.int*]"
reveal_type(frozendict.fromkeys("abc", 0)) # Revealed type is "Any"