-
-
Save dstufft/8493611 to your computer and use it in GitHub Desktop.
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
pep8_compliant = MyObject( | |
"this is quite a long string that is" | |
"going to go on for quite a while", | |
"but it's a different string to this one." | |
) | |
sane = MyObject( | |
"this is quite a long string that is" | |
"going to go on for quite a while", | |
"but it's a different string to this one." | |
) | |
best_one = MyObject( | |
( | |
"this is quite a long string that is" | |
"going to go on for quite a while" | |
), | |
"but it's a different string to this one.", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment