style: set flake8's max-line-length=88

In accordance with black's defined style, we now expect a maximum
of 88 columns for any one particular line.

This change fixes remaining violations of 88 columns in the codebase
(not many), and introduces the modified flake8 configuration.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-08-22 23:44:56 -07:00
parent ce5dbf0eeb
commit 57c0409958
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 11 additions and 4 deletions

View file

@ -1,5 +1,5 @@
[flake8]
max-line-length = 127
max-line-length = 88
max-complexity = 10
# Ignore some unavoidable flake8 warnings; we know this is against