Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created January 17, 2022 07:49
Show Gist options
  • Select an option

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

Select an option

Save esenthil2018/7ee7447faef531c4da2552869392e815 to your computer and use it in GitHub Desktop.
import functools
def decor_func(fn):
@functools.wraps(fn)
def wrapper():
# Write some code before the funtion or after the function
return fn()
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment