Increase the line length limit from 79 to 80 (#5422)

This is very marginal, and because it so marginal and because 80 is a
nice round number, I expect that nobody will spend any of their
"one wild and precious life" arguing about it.
This commit is contained in:
Michael J. Sullivan 2023-05-04 13:46:02 -07:00 committed by GitHub
parent c649e0698f
commit 2e1c21c4ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[flake8]
ignore = B008,B306,E203,E402,E731,D100,D101,D102,D103,D104,D105,W503,W504,E252,F999,F541,E741,B019
max-line-length = 79
max-line-length = 80
exclude = .git,__pycache__,build,dist,.eggs,postgres
[flake8:local-plugins]

View file

@ -93,7 +93,7 @@ zip-safe = false
# BLACK
# ========================
[tool.black]
line-length = 79
line-length = 80
target-version = ["py310"]
skip-string-normalization = true