``` python a = [1] # type: List[int] ``` do not give any warning, but ``` python a = (1,) # type: Tuple[int] ``` gives ``` list.py:1: error: Name 'Tuple' is not defined ```