Skip to content

Instantly share code, notes, and snippets.

@pkoch
Created July 30, 2015 20:57
Show Gist options
  • Save pkoch/8098c76614765750f769 to your computer and use it in GitHub Desktop.
Save pkoch/8098c76614765750f769 to your computer and use it in GitHub Desktop.
subkeyword = (
Foo.something()
.something_else()
.more_stuff(bar)
.more_stuff(
omg,
so,
many,
args,
)
.nearly_done()
.finally(baz)
)
subkeyword = (
Foo.something().something_else().more_stuff(
bar
).more_stuff(
omg,
so,
many,
args,
).nearly_done().finally(baz)
)
subkeyword = (
Foo.something()
.something_else()
.more_stuff(bar)
.more_stuff(
omg,
so,
many,
args,
).nearly_done()
.finally(baz)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment