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

This commit is contained in:
Alena Volkova 2017-10-12 00:33:12 -04:00
parent 671a078137
commit 99785a1be4
2 changed files with 3 additions and 2 deletions

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]