From 83f905841f2b2aef4a92f77a6b7b78d45646acf7 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Sun, 7 Aug 2022 09:04:58 +0200 Subject: Reduce max line length in flake8 to the default of 79. --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/python-app.yml') diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 337e740..4f16585 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -29,7 +29,7 @@ jobs: pip install codecov flake8 pytest pytest-cov if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 - run: flake8 sqlparse --count --max-complexity=31 --max-line-length=88 --show-source --statistics + run: flake8 sqlparse --count --max-complexity=31 --show-source --statistics - name: Test with pytest run: pytest --cov=sqlparse - name: Publish to codecov -- cgit v1.2.1