From e91493d5b7269f3b3710322ae45a04cc79151eaa Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Fri, 9 Aug 2024 23:47:26 +0100 Subject: [PATCH] Update pylint.yml with --max-line-length 120 --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 798661f..27756b0 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -20,4 +20,4 @@ jobs: pip install flake8 discord pytest - name: Analysing the code with flake8 run: | - flake8 $(git ls-files '*.py') + flake8 --max-line-length 120 $(git ls-files '*.py')