Apparently, this is not possible with type hints. PEP 484 can not distinguish between Sequence[str], Iterable[str] and str according to Guido van Rossum.
Source: https://github.com/python/mypy/issues/1965 and https://github.com/python/typing/issues/256