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

@ -25,6 +25,7 @@
import os
import subprocess
import sys
from typing import Dict
sys.path.insert(0, os.path.dirname(__file__))
import zulip_openshift_config as config

View file

@ -21,7 +21,7 @@
# THE SOFTWARE.
# https://github.com/python/mypy/issues/1141
from typing import Text
from typing import Dict, Text
# Change these values to configure authentication for the plugin
ZULIP_USER = 'openshift-bot@example.com'