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 1453a5bfda
commit a3a03bd6a5
129 changed files with 132 additions and 117 deletions

View File

@@ -13,7 +13,7 @@ import atexit
from collections import defaultdict
from zerver.lib.utils import statsd
from typing import Any, Callable, Dict, Mapping, Optional, Set, Union
from typing import Any, Callable, Dict, List, Mapping, Optional, Set, Union
Consumer = Callable[[BlockingChannel, Basic.Deliver, pika.BasicProperties, str], None]