remove trailing ws

This commit is contained in:
Benjamin Peterson 2015-01-02 12:10:41 -06:00
parent ae0f50ead3
commit 48e4630fce
1 changed files with 4 additions and 4 deletions

View File

@ -967,13 +967,13 @@ Programming Recommendations
- Use ``is not`` operator rather than ``not ... is``. While both
expressions are functionally identical, the former is more readable
and preferred.
Yes::
if foo is not None:
No::
if not foo is None:
- When implementing ordering operations with rich comparisons, it is