From e67ba8180e050ffd1c29e38cf2ad3929004fdd8f Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Wed, 22 Nov 2023 15:34:24 -0500 Subject: [PATCH] fix flake8 config --- {{cookiecutter.project_slug}}/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile index 2cae11ad4..294c26a4e 100644 --- a/{{cookiecutter.project_slug}}/Makefile +++ b/{{cookiecutter.project_slug}}/Makefile @@ -58,7 +58,7 @@ clean-test: ## remove test and coverage artifacts lint/flake8: ## check style with flake8 ruff {{ cookiecutter.project_slug }} tests - flake8 --config=setup.cfg {{ cookiecutter.project_slug }} tests + flake8 --config=.flake8 {{ cookiecutter.project_slug }} tests {% if cookiecutter.use_black == 'y' -%} lint/black: ## check style with black