mypy: Fix errors when trying to find the zulip Python project.

This commit is contained in:
Tim Abbott 2018-06-04 11:48:15 -07:00
parent 01555e8772
commit 9a0a947dc1
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ ignore_missing_imports = True
[mypy-zulip]
ignore_missing_imports = True
# This isn't the right solution (we should tell mypy where to find
# them), but it's necessary to avoid warnings like this:
# note: Import of 'zulip' ignored
# I'm not sure how to tell mypy where to find these without having it
# also process everything else in the Zulip virtualenv...
follow_imports = skip
[mypy-zulip_bots.lib]
ignore_missing_imports = True