mypy: zulip: Fix errors in tests/__init__.py.
This commit is contained in:
parent
671a078137
commit
99785a1be4
|
@ -20,7 +20,6 @@ sys.path.append(os.path.dirname(TOOLS_DIR))
|
||||||
|
|
||||||
exclude = """
|
exclude = """
|
||||||
zulip/integrations/perforce/git_p4.py
|
zulip/integrations/perforce/git_p4.py
|
||||||
zulip/tests/__init__.py
|
|
||||||
zulip/tests/test_default_arguments.py
|
zulip/tests/test_default_arguments.py
|
||||||
|
|
||||||
zulip_bots/zulip_bots/bots
|
zulip_bots/zulip_bots/bots
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
import pkgutil
|
import pkgutil
|
||||||
__path__ = pkgutil.extend_path(__path__, __name__)
|
from typing import Iterable, Text
|
||||||
|
|
||||||
|
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[Text]
|
||||||
|
|
Loading…
Reference in a new issue