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
While preparing a code snippet for #947 I encountered another bug
test.py
#: does not raise E265
a = print #: neither raises E265
#raises
=>
❯ pycodestyle test.py
test.py:5:1: E265 block comment should start with '# '
test.py:5:8: W292 no newline at end of file
test.py:5:8: W292 no newline at end of file
test.py:5:8: W292 no newline at end of file
or minimal
#a
=>
❯ pycodestyle test.py
test.py:1:1: E265 block comment should start with '# '
test.py:1:3: W292 no newline at end of file
test.py:1:3: W292 no newline at end of file
test.py:1:3: W292 no newline at end of file
pycodestyle --version
2.6.0
The text was updated successfully, but these errors were encountered:
While preparing a code snippet for #947 I encountered another bug
test.py
=>
or minimal
=>
The text was updated successfully, but these errors were encountered: