PyCQA / flake8-import-order

Flake8 plugin that checks import order against various Python Style Guides
GNU Lesser General Public License v3.0
278 stars 72 forks source link

pycharm: add case-sensitivity for imports on seperate lines #158

Closed Wim-De-Clercq closed 6 years ago

Wim-De-Clercq commented 6 years ago

The current implementation of the pycharm style fixed imports on 1 line. Like this is valid with the pycharm option.

from x import A, B, a, b

However, split on multiple lines this is not valid for flake8. And for pycharm this is the default sorting.

from x import A
from x import B
from x import a
from x import b

aka, the current pycharm implementation fixes I101 warnings, but not I100 warnings.