Petunjuk tipe Python Callable
from Typing import Callable
def function(func_par: Callable[[Arg1Type, Arg2Type, ...], ReturnType]):
...
Elias Foramitti
from Typing import Callable
def function(func_par: Callable[[Arg1Type, Arg2Type, ...], ReturnType]):
...