You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the following simple file, let's call it test.py:
a= (
2+2
)
That is, something one might expect to find after running black. Here, pycodestyle test.py reports no errors. Now, ignore E203 (which is also common in the context of black), and we get the following output:
$ pycodestyle test.py --ignore E203
test.py:3:5: W503 line break before binary operator
This is on pycodestyle 2.6.0.
The text was updated successfully, but these errors were encountered:
Consider the following simple file, let's call it
test.py
:That is, something one might expect to find after running
black
. Here,pycodestyle test.py
reports no errors. Now, ignore E203 (which is also common in the context of black), and we get the following output:This is on pycodestyle 2.6.0.
The text was updated successfully, but these errors were encountered: