What is the type hint for a function

10.7k Views Asked by At

Is it just callable? In the meantime I have been using function as my IDE regards callable as a bool.

def func(a: int, b: str, callback: ???)
1

There are 1 best solutions below

0
On BEST ANSWER

Yes, typing.Callable is the right hint for a callback.

Also see the Callable section of PEP 484:

Frameworks expecting callback functions of specific signatures might be type hinted using Callable[[Arg1Type, Arg2Type], ReturnType].