diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-24 18:35:58 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-24 18:35:58 -0800 |
commit | dae879525fd62f724e2b0d59e26fadf53de3865a (patch) | |
tree | 0807fbdc572f8d031a7701121827eb77bbd88b05 /docs | |
parent | 81f9f5cb49435e468c08c5b553ad5667bcb77478 (diff) | |
parent | 5b6ce2a63a2408638bb7636639abfb1c771585d5 (diff) | |
download | cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.tar.gz cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.tar.bz2 cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.zip |
Merge pull request #684 from reaperhulk/some-style-fixes
Some style fixes suggested by pep8-naming
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/submitting-patches.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/development/submitting-patches.rst b/docs/development/submitting-patches.rst index 5dca3f79..1797b9c1 100644 --- a/docs/development/submitting-patches.rst +++ b/docs/development/submitting-patches.rst @@ -15,7 +15,10 @@ follow the directions on the :doc:`security page </security>`. Code ---- -When in doubt, refer to :pep:`8` for Python 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``. `Write comments as complete sentences.`_ |