Minimum reproduction: ```python import foo.bar import foo.baz print(foo.baz) ``` `foo.bar` should get an F401, however, due to [pyflakes: #137 Missing import warnings when importing fully-qualified modules ](https://github.com/PyCQA/pyflakes/issues/137), they are going unflagged.
Minimum reproduction:
foo.barshould get an F401, however, due to pyflakes: #137 Missing import warnings when importing fully-qualified modules, they are going unflagged.