From b9bd3d694d91c032011e462e4c6a0d32e7981274 Mon Sep 17 00:00:00 2001 From: Chris Berkhout Date: Tue, 24 Aug 2021 17:43:54 +0200 Subject: [PATCH] Fix make lint to avoid the dist directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a26a11..a37b466 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ format: ## Format source code .PHONY: lint lint: ## Lint source code - poetry run flake8 + poetry run flake8 src tests .PHONY: test test: ## Run tests