From d657fb0f032d963c388ffe83822e28a9d4ba90ac Mon Sep 17 00:00:00 2001 From: Philipp van Kempen Date: Thu, 23 Jun 2022 14:13:45 +0200 Subject: [PATCH] update flake8 flags --- .github/workflows/style.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index ec0a815af..b3bb3e66e 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -33,7 +33,7 @@ jobs: black: true black_args: "--line-length=120" flake8: true - flake8_args: "--max-line-length=120 --ignore=E203" + flake8_args: "--max-line-length=120 --ignore=E203,W503" check-license: name: Check for License headers diff --git a/setup.cfg b/setup.cfg index 8b776aae8..afdaa3cc7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,4 +16,4 @@ disable = duplicate-code,invalid-name,too-many-arguments,fixme [flake8] max-line-length = 120 -ingore = E203 +ingore = E203,W503