Pep8 #333
No reviewers
Labels
No labels
Bug
Enhancement
Feature Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/twython#333
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "pep8"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
code now conforms to pep8 standards
Coverage increased (+0.82%) when pulling
a0fec2f004on greedo:pep8 intof4496ec8b2on ryanmcgrath:master.@michaelhelmick
if not foo is None:is evaluated the same way as
if foo is not None:However the second is recommended in PEP8
See under
Programming RecommendationsI was unaware, thanks a lot!