From b617c1761746e9477fd2f59ee81cd3a051c4e0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu> Date: Thu, 10 Jan 2019 17:42:04 +0100 Subject: [PATCH] Removed mypy warn_unused_ignores=True setting Some errors are platform-specific (e.g. using asyncio.ProactorEventLoop only exists on Windows and thus mypy complains on Linux) so ignoring those is needed on Linux but not on Windows. Yay. --- setup.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 41e185cf..4e3abe97 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,6 @@ addopts = -v --cov flamenco_worker --cov-report term-missing --ignore node_modul [mypy] python_version = 3.7 -warn_unused_ignores = True ignore_missing_imports = True follow_imports = skip incremental = True -- GitLab