mypy: Added Dict, List and Set imports.

Fixed mypy errors associated with the upgrade.
This commit is contained in:
Raghav Jajodia 2017-03-03 23:31:52 +05:30 committed by Tim Abbott
parent 94871fea76
commit 58f5e729b6
9 changed files with 9 additions and 7 deletions

View file

@ -21,7 +21,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from __future__ import absolute_import
from typing import IO, Any, Text, Union, Set, Tuple
from typing import IO, Any, Dict, List, Text, Union, Set, Tuple
from types import FrameType
import sys