From 91326b306070a09ca4a60a163c43aaa1f653c58d Mon Sep 17 00:00:00 2001 From: Will Dumm Date: Wed, 18 Sep 2024 14:53:43 -0700 Subject: [PATCH] run black after docformatter --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c74e4e53..0703cd8c 100644 --- a/Makefile +++ b/Makefile @@ -8,12 +8,12 @@ test: pytest tests format: - black netam tests docformatter --in-place --black --recursive netam tests + black netam tests checkformat: - black --check netam tests docformatter --check --black --recursive netam tests + black --check netam tests lint: # stop the build if there are Python syntax errors or undefined names