We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd51925 commit 81205eaCopy full SHA for 81205ea
tools/run-mypy
@@ -23,7 +23,6 @@ zulip/integrations/perforce/git_p4.py
23
24
zulip_bots/zulip_bots/bots
25
26
-zulip_botserver/tests/__init__.py
27
zulip_botserver/zulip_botserver/server.py
28
zulip_botserver/setup.py
29
""".split()
zulip_botserver/tests/__init__.py
@@ -1,2 +1,4 @@
1
import pkgutil
2
-__path__ = pkgutil.extend_path(__path__, __name__)
+from typing import Iterable, Text
3
+
4
+__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[Text]
0 commit comments