mirror of https://github.com/zulip/zulip.git
mypy: Fix errors when trying to find the zulip Python project.
This commit is contained in:
parent
01555e8772
commit
9a0a947dc1
6
mypy.ini
6
mypy.ini
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue