From bd94ec314b342f8f50f1ce18fd3ac8806f3bd5c1 Mon Sep 17 00:00:00 2001 From: Dan Bungert Date: Fri, 21 Jul 2023 14:12:26 -0600 Subject: [PATCH] make: cleanup flake8 We've been using the distro flake8 for some time. Also tox -e flake8 is broken. Just remove this note. Also drop unneded trailing slashes. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c7fb5811..5486c06b 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ SYSTEM_SETUP_DRYRUN?=--dry-run export PYTHONPATH CWD := $(shell pwd) -CHECK_DIRS := console_conf/ subiquity/ subiquitycore/ system_setup/ +CHECK_DIRS := console_conf subiquity subiquitycore system_setup PYTHON := python3 ifneq (,$(MACHINE)) @@ -73,7 +73,6 @@ lint: flake8 .PHONY: flake8 flake8: - @echo 'tox -e flake8' is preferred to 'make flake8' $(PYTHON) -m flake8 $(CHECK_DIRS) .PHONY: unit