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
and running pycodestyle --ignore=E303 foo.py (E303 - Too many blank lines) reports foo.py:9:5: E301 expected 1 blank line, found 0 even there is a blank line.
There is one more thing that is confusing me - I'm able to fix this error by adding new line between def bar and pass.
Any idea what could be wrong here?
Thanks
The text was updated successfully, but these errors were encountered:
Hello, 👋
I have a following code in
foo.py
:and running
pycodestyle --ignore=E303 foo.py
(E303 - Too many blank lines) reportsfoo.py:9:5: E301 expected 1 blank line, found 0
even there is a blank line.There is one more thing that is confusing me - I'm able to fix this error by adding new line between
def bar
andpass
.Any idea what could be wrong here?
Thanks
The text was updated successfully, but these errors were encountered: