PyCQA / pycodestyle

Simple Python style checker in one Python file

Home Page:https://pycodestyle.pycqa.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

E123 handling not according PEP8 ?

rumpel360 opened this issue · comments

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

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

Thanks for info !