From 3ab05354e828df21bffc51920df1477617f89554 Mon Sep 17 00:00:00 2001 From: Matteo Vitali Date: Tue, 26 Mar 2024 17:06:20 +0100 Subject: [PATCH] Fix ruff `check --fix` invocation --- {{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