Closed Wim-De-Clercq closed 6 years ago
The current implementation of the pycharm style fixed imports on 1 line. Like this is valid with the pycharm option.
pycharm
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.
I101
I100
The current implementation of the
pycharm
style fixed imports on 1 line. Like this is valid with the pycharm option.However, split on multiple lines this is not valid for flake8. And for pycharm this is the default sorting.
aka, the current pycharm implementation fixes
I101
warnings, but notI100
warnings.