Skip to content

Instantly share code, notes, and snippets.

@sloria
Created June 30, 2013 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sloria/5895773 to your computer and use it in GitHub Desktop.
Save sloria/5895773 to your computer and use it in GitHub Desktop.
# Awkward
for options_shortcut in self.options_shortcuts:
options_shortcut.this()
options_shortcut.that()
# Better
for each in self.options_shortcuts:
each.this()
each.that()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment