From c4c12ca2c3c37be6045738ab1d4c1cef96c656d3 Mon Sep 17 00:00:00 2001 From: Bikouo Aubin <79859644+abikouo@users.noreply.github.com> Date: Wed, 3 Aug 2022 17:52:04 +0200 Subject: [PATCH] Fix linters job failing following flake8 release # https://github.com/PyCQA/flake8/pull/1648 (#498) [Fix linters] flake8 validation is failing Merge and releasing of the following PR PyCQA/flake8#1648 ISSUE TYPE Bugfix Pull Request Reviewed-by: Mike Graves --- setup.cfg | 2 +- tox.ini | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 12b98d34..664feaae 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [flake8] max-line-length = 160 ignore = W503,E402 -exclude = .cache +exclude = .cache,.git,.tox,tests/output diff --git a/tox.ini b/tox.ini index 080514dc..491046ec 100644 --- a/tox.ini +++ b/tox.ini @@ -36,6 +36,3 @@ commands = black -v --check --diff {toxinidir}/plugins {toxinidir}/tests yamllint -s {toxinidir} flake8 {toxinidir} - -[flake8] -exclude = .git,.tox,tests/output