From d9c581b95bf4acdea8da5af518cf98375e5486ae Mon Sep 17 00:00:00 2001 From: matejcik Date: Wed, 13 Nov 2019 12:10:33 +0100 Subject: [PATCH] python: run flake8 as part of make style --- python/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/python/Makefile b/python/Makefile index 4a0b229749..5960a41108 100644 --- a/python/Makefile +++ b/python/Makefile @@ -58,6 +58,7 @@ style: black $(STYLE_TARGETS) isort --apply --recursive $(STYLE_TARGETS) --skip-glob "$(EXCLUDE_TARGETS)/*" autoflake -i --remove-all-unused-imports -r $(STYLE_TARGETS) --exclude "$(EXCLUDE_TARGETS)" + flake8 style_check: black --check $(STYLE_TARGETS)