From 2e1c21c4ec059f5ff7a8bb3604778720ecfb2b9d Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Thu, 4 May 2023 13:46:02 -0700 Subject: [PATCH] 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. --- .flake8 | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index a18502426..a50c03d9e 100644 --- a/.flake8 +++ b/.flake8 @@ -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] diff --git a/pyproject.toml b/pyproject.toml index 7a61eac7a..9a555b9b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,7 +93,7 @@ zip-safe = false # BLACK # ======================== [tool.black] -line-length = 79 +line-length = 80 target-version = ["py310"] skip-string-normalization = true