From a6867d4e3aa632c6aaa2deb17069f63168852233 Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 4 Nov 2025 10:35:58 -0500 Subject: [PATCH] Makefile: make ISORT_MODULES variable Signed-off-by: mulhern --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8adec33..9845cbc 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ else PYTHON = MONKEYTYPE_TRACE_MODULES=into_dbus_python monkeytype run endif +ISORT_MODULES = monkeytype_config.py setup.py src tests + MONKEYTYPE_MODULES = into_dbus_python._signature .PHONY: lint @@ -33,12 +35,12 @@ coverage: .PHONY: fmt fmt: - isort setup.py src tests monkeytype_config.py + isort ${ISORT_MODULES} black . .PHONY: fmt-travis fmt-travis: - isort --diff --check-only setup.py src tests + isort --diff --check-only ${ISORT_MODULES} black . --check .PHONY: upload-release