Skip to content

Commit

Permalink
Mark type checking block as uncovered.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 31, 2024
1 parent c3bb3d6 commit c8c27d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inflect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit c8c27d9

Please sign in to comment.