```python from email.charset import SHORTEST ``` Causes `mypy` to complain: `Module 'email.charset' has no attribute 'SHORTEST'` However: ``` $ python >>> from email.charset import SHORTEST >>> SHORTEST 3 ```