Skip to content

Instantly share code, notes, and snippets.

@Tobi-De
Last active July 18, 2022 19:27
Show Gist options
  • Save Tobi-De/aa6025962cd60b46ed014b1dbe47fff7 to your computer and use it in GitHub Desktop.
Save Tobi-De/aa6025962cd60b46ed014b1dbe47fff7 to your computer and use it in GitHub Desktop.
def decorator(arg1, arg2):
def wrapper(func):
def inner(*args, **kwargs):
...
@decorator(1, 2) # my_func = decorator(my_func)(1,2)
def my_func():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment