Type Indice Tuple

from typing import Tuple

def func(message: str) -> Tuple[str, int]:
	...
Benja