AVUKU-PRAGATHESWARI

Results 4 comments of AVUKU-PRAGATHESWARI

The code provided contains two errors when calling the wrapper function. I will explain each error and provide a corrected version of the code. Error: Missing argument in wrapper function...

from typing import Callable, Tuple, TypeVar T = TypeVar("T") def wrapper(fn: Callable[[], T]) -> Tuple[T, float]: return fn(), 1.0 def wrapper2(fn: Callable[[], T]) -> T: return fn() def func() ->...

Hey @pranjay-poddar ..Please assign me this issue under GSSoC'23, thank you.