From 5fd5a7ec435e22f351fb3751221c04e05fd883da Mon Sep 17 00:00:00 2001 From: Per Held Date: Thu, 30 Jan 2025 13:05:47 +0100 Subject: [PATCH] Add tosa serializer to .mypy.ini As suggested in a previous discussion the tosa serializer should go into .mypy.ini for a project wide ignore on missing imports instead of doing inline annotations in every file. Change-Id: I3ea00d0ff586d0f68a2c0fc557a2296cd03f3b04 --- .mypy.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.mypy.ini b/.mypy.ini index 43d75e64de4..8c1c9dbcadc 100644 --- a/.mypy.ini +++ b/.mypy.ini @@ -77,6 +77,9 @@ ignore_missing_imports = True [mypy-ruamel] ignore_missing_imports = True +[mypy-serializer.*] +ignore_missing_imports = True + [mypy-setuptools.*] ignore_missing_imports = True