From c8c27d950ca19c1fe0209c71b8f3f80012874d92 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 31 Mar 2024 03:57:09 -0400 Subject: [PATCH] Mark type checking block as uncovered. --- inflect/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inflect/__init__.py b/inflect/__init__.py index 22d7669..fe9ce3a 100644 --- a/inflect/__init__.py +++ b/inflect/__init__.py @@ -2026,7 +2026,7 @@ def __init__(self, orig) -> None: # ^-- Workaround for typeguard AST manipulation: # https://github.com/agronholm/typeguard/issues/353#issuecomment-1556306554 -if _STATIC_TYPE_CHECKING: +if _STATIC_TYPE_CHECKING: # pragma: no cover Word = Annotated[str, "String with at least 1 character"] else: