A Flake8 plugin that requires single line imports.
The following will result in an error:
from foo import bar, baz
It should be rewritten as:
from foo import bar
from foo import baz
$ pip install flake8-import-single
$ pip install --upgrade flake8-import-single
$ flake8 --version
3.5.0 (flake8-import-single: 0.1.2, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.6.0)
Much thanks goes out to flake8-print as the basis for this plugin.