From eebe3ad1b2971d2b61155f1ac3d44a1b0b596fbb Mon Sep 17 00:00:00 2001 From: Vile <111662603+vile@users.noreply.github.com> Date: Sun, 14 Apr 2024 08:14:26 -0400 Subject: [PATCH] ci: update flake8 config --- .flake8 | 2 +- .github/workflows/lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index 9cb6c08..7a2bf0c 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,4 @@ [flake8] -ignore = E501 +ignore = E501,W503 exclude = .git,__pycache__ max-complexity = 18 \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b8cfaf2..d8ccfb3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,4 +24,4 @@ jobs: run: pip install flake8 - name: Run flake8 - run: flake8 --extend-ignore E501 --verbose . \ No newline at end of file + run: flake8 --extend-ignore E501,W503 --verbose . \ No newline at end of file