Skip to content

Instantly share code, notes, and snippets.

@onjin
Created July 13, 2022 12:09
Show Gist options
  • Save onjin/c4651de59697e797c54de6b4fe52d94b to your computer and use it in GitHub Desktop.
Save onjin/c4651de59697e797c54de6b4fe52d94b to your computer and use it in GitHub Desktop.
Python typed decorator
RT = TypeVar('RT') # return type
def inject_user() -> Callable[[Callable[..., RT]], Callable[..., RT]]:
def decorator(func: Callable[..., RT]) -> Callable[..., RT]:
def wrapper(*args, **kwargs) -> RT:
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment