Drop the explicit 80-character limit from coding style

- As a general rule of thumb: "one sentence/statement per line"

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2020-02-23 14:29:46 +01:00
parent ad9ca3e46e
commit d960a5fede

View file

@ -201,7 +201,7 @@ To be a little more explicit, the common elements across the languages are:
* With Python, follow PEP8 as much as possible
* Surround operators and expression terms with a space
* No cuddled braces
* Stick to 80 columns where possible, although exceptions are fine
* No need to stick slavishly to 80 characters per line, but do not make them overly long (rule of thumb: *One sentence/statement per line*)!
* Class names are capitalized, variable names are not
We target Python 3 so that our test suite runs on the broadest set of platforms.