This code (no import from typing) complains, as expected: ``` a = None # type: Any ``` However, this code passes: ``` a = None # type: Dict ``` Similar with List, Set.