mypy: zulip_botserver: Fix errors in tests/__init__.py.

This commit is contained in:
Alena Volkova 2017-10-12 00:34:31 -04:00
parent fd519252d6
commit 81205ea813
2 changed files with 3 additions and 2 deletions

View file

@ -23,7 +23,6 @@ zulip/integrations/perforce/git_p4.py
zulip_bots/zulip_bots/bots
zulip_botserver/tests/__init__.py
zulip_botserver/zulip_botserver/server.py
zulip_botserver/setup.py
""".split()

View file

@ -1,2 +1,4 @@
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
from typing import Iterable, Text
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[Text]