From d7c04c74fe30c98819c926314e15030d0f336d2e Mon Sep 17 00:00:00 2001 From: caleb15 Date: Thu, 2 Apr 2020 15:59:32 -0700 Subject: [PATCH] use black for lint --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0b31135..3b5c175 100644 --- a/Makefile +++ b/Makefile @@ -50,8 +50,8 @@ dev: pip install -r dev-requirements.pip pip install -e . -lint: ## check style with flake8 - flake8 healthchecks_manager tests +lint: + black --check . test: ## run tests quickly with the default Python pytest