From 407cc7dfc80adfc5e5625ad6178bbccecd066a69 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Tue, 6 Feb 2024 14:55:50 -0800 Subject: [PATCH] Ignore mypy import errors --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0e4e0db..281ffb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,3 +64,7 @@ ignore = [ "E501", # line too long - defer to `black` "E731", # No lambdas — too strict ] + +[tool.mypy] +# TODO: ideally we would list the modules that aren't yet typed +ignore_missing_imports = true