FuncT = TypeVar("FuncT", bound = Callable[..., Any]) def my_decorator(func: FuncT) - > FuncT: @wraps(func) def wrapped( * args: Any, ...
確定! 回上一頁