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

`E704` conflicts with black code style in `.pyi` files

DetachHead opened this issue · comments

def foo() -> None: ...
E704 multiple statements on one line (def)

black puts the ... on the same line in .pyi files

As said in #959

is this needed? E704 is disabled by default

Also that thread has ways of making sure you don't see E704 while ignoring the errors you want to ignore.

Put another way: "Are you deliberately enabling E704?"