```py from collections.abc import MutableMapping MutableMapping[int, int] ``` `mypy python-version 3.6 test.py`: `Success: no issues found in 1 source file` `python test.py`: ``` TypeError: 'ABCMeta' object is not subscriptable ```