From b1ab308c26230d95911298d62d94c4bbaa314431 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 14 May 2018 10:07:02 -0700 Subject: [PATCH] botserver: Fix mypy error. --- zulip_botserver/zulip_botserver/server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zulip_botserver/zulip_botserver/server.py b/zulip_botserver/zulip_botserver/server.py index 3ca019f..45d6680 100644 --- a/zulip_botserver/zulip_botserver/server.py +++ b/zulip_botserver/zulip_botserver/server.py @@ -12,6 +12,7 @@ from werkzeug.exceptions import BadRequest from six.moves.configparser import SafeConfigParser from zulip import Client +from zulip_bots.custom_exceptions import ConfigValidationError from zulip_bots.lib import ExternalBotHandler, StateHandler bots_config = {} # type: Dict[str, Mapping[str, str]]