``` python chunks = ([1] * 3 for _ in range(10)) flattened = itertools.chain.from_iterable(chunks) ``` Is valid python code, but mypy throws this error: ``` error: Argument 1 to "from_iterable" of "chain" has incompatible type Iterator[Iterable[...]]; expected Iterable[Iterable[...]] ```