Fix stubs that assumed reexport without as

This commit is contained in:
Ben Longbons
2015-10-16 14:48:27 -07:00
parent 2f49dfa1f5
commit c2f892a409
19 changed files with 59 additions and 27 deletions

View File

@@ -1,7 +1,7 @@
"""Stub file for the 'array' module."""
from typing import (Any, Generic, IO, Iterable, Sequence, TypeVar,
Union, overload, Iterator, Tuple, BinaryIO)
Union, overload, Iterator, Tuple, BinaryIO, List)
T = TypeVar('T')