Add missing List imports.

This commit is contained in:
Lukasz Langa
2016-12-21 01:06:52 -08:00
parent 8c5c788a4d
commit 5f416fae64
20 changed files with 21 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
# Stubs for warnings
from typing import Any, Dict, NamedTuple, Optional, TextIO, Tuple, Type, Union
from typing import Any, Dict, List, NamedTuple, Optional, TextIO, Tuple, Type, Union
from types import ModuleType, TracebackType
def warn(message: Union[str, Warning], category: Optional[Type[Warning]] = ...,