From 564327ecfa354ea64afe64e149b71a1070799de2 Mon Sep 17 00:00:00 2001 From: r-spiewak <63987228+r-spiewak@users.noreply.github.com> Date: Thu, 19 Jun 2025 12:34:39 -0400 Subject: [PATCH] Fix typo in pyproject coverage to ignore if DEBUG_PRINTS lines --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 037f239..4b9d231 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,6 +83,7 @@ exclude_also = [ "def __repr__", "if self\\.debug", "if DEBUG_PRINT:", + "if DEBUG_PRINTS:", # Don't complain if tests don't hit defensive assertion code: "raise AssertionError",