``` python from foo import(bar, baz) ``` should be ``` python from foo import (bar, baz) ``` but `pep8` does not currently complain about this. `import` is not a function!