python type hint for multiple return values code example
Example: use python type hint for multiple return values
from typing import Tuple
def func() -> Tuple[str, str]:
return 'a', 'b'
from typing import Tuple
def func() -> Tuple[str, str]:
return 'a', 'b'