Skip to content

Instantly share code, notes, and snippets.

@shomah4a
Last active September 5, 2016 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save shomah4a/a338185085d5aa36ae99d66474c91ffd to your computer and use it in GitHub Desktop.
Save shomah4a/a338185085d5aa36ae99d66474c91ffd to your computer and use it in GitHub Desktop.
import functools
def kamekoopa(f):
@functools.wraps(f)
def call(*args, **argd):
return f(*args, **argd)
return call
@kamekoopa
def tweet():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment