Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Pep8 ErrorCode E41?

Tags:

python

pep8

All the examples of using pep8 and flake8 use the following configuration setting:

[pep8]
ignore = E226,E302,E41
max-line-length = 160

The question I have is "What is E41"?

Does this ignore line somehow ignore E401 and E402? This is the documentation for E4 errors:

E4  Import
E401    multiple imports on one line
E402    module level import not at top of file
like image 711
JalapenoGremlin Avatar asked Apr 06 '15 22:04

JalapenoGremlin


1 Answers

From the first answer to this issue:

Note: E41 means that all E41* codes will be ignored, but since currently there are no E41* codes, that's a noop.

like image 149
Marco Favorito Avatar answered Oct 18 '22 18:10

Marco Favorito