From 89242d7aab4a776fddfbc02e0c91213a3f8f85d5 Mon Sep 17 00:00:00 2001 From: Natik Gadzhi Date: Tue, 21 Jan 2025 17:37:50 -0800 Subject: [PATCH] Red squiggly lines make me suffer. If we're not doing mypy for unit tests, let's not do mypy for unit tests. Which is bad, but. --- mypy.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/mypy.ini b/mypy.ini index f51c0846f..484661273 100644 --- a/mypy.ini +++ b/mypy.ini @@ -12,6 +12,7 @@ disallow_untyped_calls = True disallow_incomplete_defs = True disallow_untyped_defs = True warn_return_any = True +exclude = unit_tests/ # Only alert on the files we want to check follow_imports = silent