From 6bd3faa114da01a2af1970251e5d5236041022a0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 20 Jul 2020 16:16:29 -0400 Subject: [PATCH] Tell people to use black in our dev docs (#5328) * Tell people to use black in our dev docs * For codecov --- docs/development/submitting-patches.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/development/submitting-patches.rst b/docs/development/submitting-patches.rst index ac1986a33..11281b525 100644 --- a/docs/development/submitting-patches.rst +++ b/docs/development/submitting-patches.rst @@ -19,9 +19,10 @@ Code ---- When in doubt, refer to :pep:`8` for Python code. You can check if your code -meets our automated requirements by running ``flake8`` against it. If you've -installed the development requirements this will automatically use our -configuration. You can also run the ``tox`` job with ``tox -e pep8``. +meets our automated requirements by formatting it with ``black`` and running +``flake8`` against it. If you've installed the development requirements this +will automatically use our configuration. You can also run the ``tox`` job with +``tox -e pep8``. `Write comments as complete sentences.`_