From 5fde6d533903441fe3d986030319de3415a9b956 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Wed, 25 Jan 2023 22:54:46 +0400 Subject: [PATCH] Don't type-check Twisted interfaces. --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index c711e6e72..af9c87945 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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]