Użyj wskazówki typu Python dla wielu wartości zwracanych
from typing import Tuple
def func() -> Tuple[str, str]:
return 'a', 'b'
Careful Caiman
from typing import Tuple
def func() -> Tuple[str, str]:
return 'a', 'b'