Don't type-check Twisted interfaces.

This commit is contained in:
Andrey Rakhmatullin 2023-01-25 22:54:46 +04:00
parent 764a9d47bb
commit 5fde6d5339
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ universal=1
[mypy]
ignore_missing_imports = true
# Interface classes are hard to support
[mypy-twisted.internet.interfaces]
follow_imports = skip
# FIXME: remove the following sections once the issues are solved
[mypy-scrapy.downloadermiddlewares.httpproxy]