Top "Pep8" questions

Coding conventions and style guidelines for Python.

Python PEP 8 docstring line length

I've recently begun figuring it would be a good idea to follow PEP 8. I made my editor display the 80-column …

python coding-style pep8
Change indentation level in Google Colab

I am using Google Colaboratory to write Python code in their notebook. Whenever I hit an enter after a for …

python python-3.x indentation google-colaboratory pep8
Apply automatic pep8 fixes from QuickFix window

Background: I'm using the (fantastic) Vim plugin python-mode, which includes the pep8 linter. The :PyLint command runs all linters and …

python vim pep8 python-mode
flake8 error E901

flake8 xxx --ignore=E501,E128,E701,E261,E301,E126,E127,E131 xxx.py:1:40: E901 SyntaxError: invalid syntax Any one has …

python python-2.6 pep8 flake8
How to fix: W602 deprecated form of raising exception

If I use pylint (via sublimerlinter) I get following warning message: W602 deprecated form of raising exception This I how …

python pylint pep8