Callable
Dùng để mô tả một hàm (function) với kiểu tham số và kiểu trả về:
from typing import Callable
def run(callback: Callable[[int, str], bool]):
...
Dùng để mô tả một hàm (function) với kiểu tham số và kiểu trả về:
from typing import Callable
def run(callback: Callable[[int, str], bool]):
...