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

@ -38,7 +38,7 @@ from six.moves.configparser import SafeConfigParser
from six.moves import urllib
import logging
import six
from typing import Any, Callable, Dict, Iterable, IO, Mapping, Optional, Text, Tuple, Union
from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union
__version__ = "0.2.5"