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.
This commit is contained in:
Dan Bungert 2023-07-21 14:12:26 -06:00
parent da4df7a725
commit bd94ec314b
1 changed files with 1 additions and 2 deletions

View File

@ -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