-
Notifications
You must be signed in to change notification settings - Fork 203
Update from pep8 to pycodestyle #2828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
pip uninstall pep8
pip install pycodestyle In CircleCI config we had: Reminder: Let's try a run with
Hello modernity, a couple of things to fix :) We need to choose in between W503 and W504.
I'm adjusting the documentation too. |
|
The project has been renamed and pycodestyle is the new version. It will also means a bump into the checking that will need to be fixed. We will do that in the subsequent commits.
This is the new keyword for removing the check for a specific line.
This was initially triggered by pycodestyle W504. It kinds of force you to choose your style in between W503 and W504. Breaking before binary operators or after. To avoid it altogether, I switched to ''.join() which is more effective anyway in performance. https://wiki.python.org/moin/PythonSpeed/PerformanceTips#String_Concatenation
We will ignore W504 for most of the cases.
Basically pycostyle forces you to choose in between W504 or W503
see #2825 (comment)
for the context but basically pep8 has been renamed pycodestyle to avoid confusion with the real PEP8.
The text was updated successfully, but these errors were encountered: