From 135cfcdebfa2b21844b38c1542a1e380d82273ab Mon Sep 17 00:00:00 2001 From: Moishe Lettvin Date: Mon, 25 Mar 2024 10:43:52 -0400 Subject: [PATCH] Increase max line length to 100 because it's 2024 --- .github/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 652df99d2..da097d237 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -38,7 +38,7 @@ jobs: id: autopep8 run: | source .venv/bin/activate - autopep8 --exit-code -r -d --exclude "*_pb2.py" -a -a src/ + autopep8 --max-line-length 100 --exit-code -r -d --exclude "*_pb2.py" -a -a src/ - name: Fail if autopep8 requires changes if: steps.autopep8.outputs.exit-code == 2 run: exit 1