Skip to content

python coding guidelines

Martin J. Kühn edited this page Sep 14, 2021 · 1 revision

Python coding guidelines

Please follow the PEP 8 -- Style Guide for Python..

Note on maximum line length

If using autopep8, e.g., of the Python plugin for Visual Studio Code or VSCodium, maximum length might not be correctly applied. In this case, add

"python.formatting.autopep8Args": ["--max-line-length", "79", "--experimental"]

to your corresponding settings.json.

Clone this wiki locally