Skip to content

Instantly share code, notes, and snippets.

@Yacoby
Created March 27, 2014 13:35
Show Gist options
  • Save Yacoby/9807675 to your computer and use it in GitHub Desktop.
Save Yacoby/9807675 to your computer and use it in GitHub Desktop.
def listify(f):
@functools.wraps(f)
def listify_helper(*args, **kwargs):
return list(f(*args, **kwargs))
return listify_helper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment