From ca41afc6286466aad03cd805fe5078d4464d1033 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Wed, 19 Jul 2023 12:04:42 -0700 Subject: [PATCH] Turn off warning for unused ignores pydantic v1 vs v2 warn on different lines. --- mypy.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index 99c25ff..2231c64 100644 --- a/mypy.ini +++ b/mypy.ini @@ -58,7 +58,7 @@ disallow_untyped_defs = True disallow_incomplete_defs = True strict_equality = True warn_unreachable = True -warn_unused_ignores = True +warn_unused_ignores = False # version.py is added by scons and may not exist when we run mypy.