summaryrefslogtreecommitdiff
path: root/.github/workflows/python-app.yml
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2022-08-07 09:04:58 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2022-08-07 09:04:58 +0200
commit83f905841f2b2aef4a92f77a6b7b78d45646acf7 (patch)
tree009da4b84b4159082f85a73a690cdd63796627a5 /.github/workflows/python-app.yml
parent66e651a5f38c6d7a9872eb86b1dbeb451495a9a2 (diff)
downloadsqlparse-83f905841f2b2aef4a92f77a6b7b78d45646acf7.tar.gz
Reduce max line length in flake8 to the default of 79.
Diffstat (limited to '.github/workflows/python-app.yml')
-rw-r--r--.github/workflows/python-app.yml2
1 files changed, 1 insertions, 1 deletions
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