Created
July 30, 2013 18:33
-
-
Save joechrysler/6115528 to your computer and use it in GitHub Desktop.
PEP8 Line Breaks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In our codebase, we do a lot of this: | |
if some_really_long_boolean | |
and another_really_long_boolean | |
and a_third_really_long_boolean: | |
print "Yehaw!" | |
# PEP8 says we should probably be writing thusly | |
if some_really_long_boolean and | |
another_really_long_boolean and | |
a_third_really_long_boolean: | |
print "Yehaw!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment