From 93cd9bf83feaa04c38a28a062c25680d9861f17f Mon Sep 17 00:00:00 2001 From: Preocts Date: Thu, 2 Jan 2025 19:52:27 -0500 Subject: [PATCH 1/2] Update coverage exclusion line This was found to be incorrect in Preocts/secretbox. Now that I've corrected it, I'm pulling it into the template. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2fd37ca..cdc37b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,5 +75,5 @@ exclude_lines = [ "raise NotImplementedError", "if __name__ == .__main__.:", "\\.\\.\\.", - "if TYPE_CHECKING:", + "if (not)?TYPE_CHECKING:", ] From 76e51d27ed6f10eff44e7499d6f020bae31c495d Mon Sep 17 00:00:00 2001 From: Preocts Date: Thu, 2 Jan 2025 19:54:56 -0500 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cdc37b9..2fd37ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,5 +75,5 @@ exclude_lines = [ "raise NotImplementedError", "if __name__ == .__main__.:", "\\.\\.\\.", - "if (not)?TYPE_CHECKING:", + "if TYPE_CHECKING:", ]