From 0050533561fe4286077c89916b7037dbc331b3ef Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Fri, 31 Jan 2025 15:26:15 -0800 Subject: [PATCH] Ignore pytest-snapshot missing import See: - https://github.com/python/typeshed/pull/13448 - https://github.com/joseph-roitman/pytest-snapshot/pull/59 --- mypy.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mypy.ini b/mypy.ini index 67a94b6..5082225 100644 --- a/mypy.ini +++ b/mypy.ini @@ -12,5 +12,8 @@ ignore_missing_imports = True [mypy-pyd.*] ignore_missing_imports = True +[mypy-pytest_snapshot.*] +ignore_missing_imports = True + [mypy-tyd.*] ignore_missing_imports = True