We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python code should conform to the PEP8 standard:
https://www.python.org/dev/peps/pep-0008/
E.g., variable_names should be separated by underscores, so should module_name.py, but ClassNames are CamelCaps.
variable_names
module_name.py
ClassNames
Always spaces, never TAB characters.
There should be spaces between operators, i.e. a + (b * c) not a+(b*c).
a + (b * c)
a+(b*c)
The text was updated successfully, but these errors were encountered:
A good checker for this is Flake8 (which can easily be hooked into most editors)--ask me if you need a hand!
Sorry, something went wrong.
No branches or pull requests
Python code should conform to the PEP8 standard:
https://www.python.org/dev/peps/pep-0008/
E.g.,
variable_names
should be separated by underscores, so shouldmodule_name.py
, butClassNames
are CamelCaps.Always spaces, never TAB characters.
There should be spaces between operators, i.e.
a + (b * c)
nota+(b*c)
.The text was updated successfully, but these errors were encountered: