From 1758d803f7fc77f2b45957e5465942e736a1690b Mon Sep 17 00:00:00 2001 From: Cristobal Pio Garcia Date: Wed, 12 Jun 2024 07:11:03 -0700 Subject: [PATCH] Move ignore missing imports to ignore globally --- mypy.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index 9471a240..0299a620 100644 --- a/mypy.ini +++ b/mypy.ini @@ -2,6 +2,7 @@ files = python, tests, config warn_unused_configs = False warn_redundant_casts = False +ignore_missing_imports = True plugins = pydantic.mypy [mypy-astropy.*] @@ -86,7 +87,6 @@ ignore_errors = True # Check all of summit_utils... [mypy-lsst.summit.utils.*] -ignore_missing_imports = True ignore_errors = False disallow_untyped_defs = False disallow_incomplete_defs = False