Utilisez un indice de type Python pour plusieurs valeurs de retour

from typing import Tuple

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