from typing import List def f(x: List[str]) -> None: ... import typing def f(x: typing.List[str]) -> None: ...