From fa183b81193cce95eb4ce6a15b47880e5f69fa76 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 23 Feb 2022 19:50:34 +0100 Subject: [PATCH] python: Exclude newly detected f-string flake --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 66232988b..6f541df02 100644 --- a/Makefile +++ b/Makefile @@ -496,7 +496,7 @@ check-python-flake8: @# E731 do not assign a lambda expression, use a def @# W503: line break before binary operator @# E741: ambiguous variable name - @flake8 --ignore=E501,E731,E741,W503 --exclude $(shell echo ${PYTHON_GENERATED} | sed 's/ \+/,/g') ${PYSRC} + @flake8 --ignore=E501,E731,E741,W503,F541 --exclude $(shell echo ${PYTHON_GENERATED} | sed 's/ \+/,/g') ${PYSRC} check-pytest-pyln-proto: PATH=$(PYLN_PATH) PYTHONPATH=$(MY_CHECK_PYTHONPATH) $(PYTEST) contrib/pyln-proto/tests/