mypy: Exclude broken typeshed stubs for markdown.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-11-12 15:31:07 -08:00
parent 254758733e
commit 29050918a6
1 changed files with 6 additions and 0 deletions

View File

@ -30,3 +30,9 @@ ignore_missing_imports = True
# Warn of unreachable or redundant code.
warn_unreachable = True
[mypy-markdown.*]
# The typeshed stubs for markdown in mypy 0.790 are very broken;
# ignore them for now. (https://github.com/python/typeshed/pull/4758)
follow_imports = skip
follow_imports_for_stubs = True