From ba9ae2dc11743cf4259bf7b42dd07adcf4279cc7 Mon Sep 17 00:00:00 2001 From: Andy Shapiro Date: Wed, 19 Apr 2023 08:01:20 -0400 Subject: [PATCH] ruff . --fix, add --show-fixes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 540d5b7..d29b571 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ lint: ## Check formatting issues @black . --check && ruff . format: ## Fix formatting issues (where possible) - @black . && ruff . --fix + @black . && ruff . --fix --show-fixes test: ## Run tests @py.test