Created
July 13, 2022 12:09
-
-
Save onjin/c4651de59697e797c54de6b4fe52d94b to your computer and use it in GitHub Desktop.
Python typed decorator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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