From 2e12e0c613d346c506a5843d6a1ffff4db95823f Mon Sep 17 00:00:00 2001 From: Doug Skinner Date: Wed, 15 Jan 2020 10:09:30 -0500 Subject: [PATCH] 1391: update black instructions in dev guide --- DEVELOPMENT_GUIDE.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT_GUIDE.rst b/DEVELOPMENT_GUIDE.rst index d04df0b3e..3aa43366f 100755 --- a/DEVELOPMENT_GUIDE.rst +++ b/DEVELOPMENT_GUIDE.rst @@ -33,7 +33,7 @@ Setup Python locally using `pyenv`_ We format our code using [Black](https://github.com/python/black) and verify the source code is black compliant in Appveyor during PRs. You can find installation instructions on [Black's docs](https://black.readthedocs.io/en/stable/installation_and_usage.html). -After installing, you can run our formatting through our Makefile by `make black-format` or integrating Black directly in your favorite IDE (instructions +After installing, you can check your formatting through our Makefile by running `make black-check`. To automatically update your code to match our formatting, please run `make black`. You can also integrate Black directly in your favorite IDE (instructions can be found [here](https://black.readthedocs.io/en/stable/editor_integration.html)) Pre-commit