From ef5cdfae69c41bcc3c89addcf6229a68bb9d627b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 7 Sep 2022 20:00:19 -0500 Subject: [PATCH] ci(mypy): warn_unused_ignores = True We hit the issue at https://github.com/python/mypy/issues/8823 with the Python 3.10 check for MockAwareDocTestFinder on mypy 0.971 (compiled: yes) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c990cc1..aba4699 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,6 +53,7 @@ profile = "black" [tool.mypy] strict = true +warn_unused_ignores = false # mypy#8823 [build-system] requires = ["setuptools"]