From 795a233c4104fa2ef4762064c63ee20a848e0e21 Mon Sep 17 00:00:00 2001 From: Perry Goy Date: Wed, 15 Nov 2023 21:09:00 -0600 Subject: [PATCH] remove isort from makefile. --- Makefile | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 7663417..30ca9bc 100644 --- a/Makefile +++ b/Makefile @@ -22,12 +22,6 @@ black-check: black: black . -isort-check: - isort . --check - -isort: - isort . - ruff: ruff check . @@ -37,12 +31,12 @@ ruff-fix: mypy: mypy . -lint: isort-check ruff mypy +lint: ruff mypy -.PHONY: black-check black isort-check isort ruff ruff-fix mypy lint +.PHONY: black-check black ruff ruff-fix mypy lint pre-check-in: black-check lint -pre-check-in-fix: black isort ruff-fix mypy +pre-check-in-fix: black ruff-fix mypy .PHONY: pre-check-in pre-check-in-fix