From 4872f983cb99d04a0da11c65233f74c7d9535b5b Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Tue, 25 Jan 2022 15:25:11 -0700 Subject: [PATCH] Set Flake8 test to allow --max-line-width=127 instead of ignoring E501 --- .github/workflows/lintly-flake8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lintly-flake8.yml b/.github/workflows/lintly-flake8.yml index 95c8f6f5..7c6421b8 100644 --- a/.github/workflows/lintly-flake8.yml +++ b/.github/workflows/lintly-flake8.yml @@ -17,4 +17,4 @@ jobs: # Fail if "new" violations detected or "any", default "new" failIf: new # Additional arguments to pass to flake8, default "." (current directory) - args: "--ignore=E121,E123,E501 --per-file-ignores=python/gen_pygeoapi_config.py:E501 ." + args: "--ignore=E121,E123 --max-line-length=127 ."