Use la pista de tipo Python para múltiples valores de retorno

from typing import Tuple

def func() -> Tuple[str, str]:
    return 'a', 'b'
Careful Caiman