Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created January 17, 2022 08:08
Show Gist options
  • Save esenthil2018/5ee7e6a37cc763c202b578515e68abb8 to your computer and use it in GitHub Desktop.
Save esenthil2018/5ee7e6a37cc763c202b578515e68abb8 to your computer and use it in GitHub Desktop.
#Passing Arguments to the wrapper function
def decor_func(fn):
def wrapper(*args, **kwargs):
return fn(*args, **kwargs)
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment