Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created January 16, 2022 03:22
Show Gist options
  • Select an option

  • Save esenthil2018/fdb6009df0dc6a9824303de54932bac3 to your computer and use it in GitHub Desktop.

Select an option

Save esenthil2018/fdb6009df0dc6a9824303de54932bac3 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