Skip to content

Instantly share code, notes, and snippets.

@dstufft
Forked from freakboy3742/gist:8493564
Created January 18, 2014 17:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dstufft/8493611 to your computer and use it in GitHub Desktop.
Save dstufft/8493611 to your computer and use it in GitHub Desktop.
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