PyCQA / pycodestyle

Simple Python style checker in one Python file
https://pycodestyle.pycqa.org
Other
5.03k stars 754 forks source link

E123 handling not according PEP8 ? #1200

Closed rumpel360 closed 1 year ago

rumpel360 commented 1 year ago

Flake8 (VSC extension) throws indentation errors E123 for multiline expressions that should be fine with PEP8 rules in my opinion :

Screenshot_E123

PEP8 site screenshot: Screenshot_PEP8_Indentation

PEP8 site link: https://peps.python.org/pep-0008/#indentation

asottile commented 1 year ago

E123 is disabled by default and is something you have to opt into if you want that style. you probably used ignore instead of extend-ignore

rumpel360 commented 1 year ago

Thanks for info !