Add missing Dict imports.

This commit is contained in:
Lukasz Langa
2016-12-21 01:15:26 -08:00
parent 5f416fae64
commit c0c982ada5
13 changed files with 14 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
# Stubs for http.cookies (Python 3.5)
from typing import Generic, List, Mapping, MutableMapping, Optional, TypeVar, Union
from typing import Generic, Dict, List, Mapping, MutableMapping, Optional, TypeVar, Union
_DataType = Union[str, Mapping[str, Union[str, 'Morsel']]]
_T = TypeVar('_T')