From 59fb332677c0f865de1e42f2fc80caa2460915ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Wed, 26 Aug 2020 03:21:02 +0200 Subject: [PATCH] Set pep8speaks' max-line-length to 120 (same as black) (#3173) --- .pep8speaks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pep8speaks.yml b/.pep8speaks.yml index 86a105c8b5..2fec5a7526 100644 --- a/.pep8speaks.yml +++ b/.pep8speaks.yml @@ -5,7 +5,7 @@ scanner: linter: pycodestyle # Other option is flake8 pycodestyle: # Same as scanner.linter value. Other option is flake8 - max-line-length: 119 # Default is 79 in PEP 8 + max-line-length: 120 # Default is 79 in PEP 8 ignore: # Errors and warnings to ignore - W504 # line break after binary operator - E402 # module level import not at top of file