From 6d63a98d29ed7a68331006f2a83ebbaeead9b4fc Mon Sep 17 00:00:00 2001 From: Matteo Vitali Date: Mon, 18 Mar 2024 09:16:54 +0100 Subject: [PATCH] Update Makefile --- {{cookiecutter.project_dirname}}/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_dirname}}/Makefile b/{{cookiecutter.project_dirname}}/Makefile index 421c27c..916b7db 100644 --- a/{{cookiecutter.project_dirname}}/Makefile +++ b/{{cookiecutter.project_dirname}}/Makefile @@ -31,7 +31,7 @@ dumpgroups: ## Django dump auth.Group data .PHONY: fix fix: ## Fix Python code formatting, linting and sorting imports python3 -m ruff format . - python3 -m ruff --fix . + python3 -m ruff check --fix . python3 -m mypy --no-site-packages . .PHONY: flush