1
0
Fork 0

Fix the commands for fixing lint errors.

This commit is contained in:
Amjith Ramanujam 2018-05-15 13:25:30 -05:00
parent f8757c6f59
commit 197c11f87b
1 changed files with 4 additions and 4 deletions

View File

@ -148,8 +148,8 @@ To see stdout/stderr, use the following command:
$ behave --no-capture
PEP8 checks
-----------
PEP8 checks (lint)
-----------------_
When you submit a PR, the changeset is checked for pep8 compliance using
`pep8radius <https://github.com/hayd/pep8radius>`_. If you see a build failing because
@ -158,7 +158,7 @@ of these checks, install pep8radius and apply style fixes:
::
$ pip install pep8radius
$ pep8radius --docformatter --diff # view a diff of proposed fixes
$ pep8radius --docformatter --in-place # apply the fixes
$ pep8radius master --docformatter --diff # view a diff of proposed fixes
$ pep8radius master --docformatter --in-place # apply the fixes
Then commit and push the fixes.