Consider the following function:
def test(data: np.ndarray, func, *args) -> np.ndarray:
return func(data, args)
The func and args arguments are numpy function and arguments corresponding to it. The question is, how do i annotate these two arguments with type hinting?