Skip to content

Commit c5d67f9

Browse files
committed
patch coverage
1 parent fd35af3 commit c5d67f9

File tree

1 file changed

+1
-1
lines changed
  • hypothesis-python/src/hypothesis/strategies/_internal

1 file changed

+1
-1
lines changed

hypothesis-python/src/hypothesis/strategies/_internal/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109

110110
if sys.version_info >= (3, 10): # pragma: no cover
111111
from types import EllipsisType as InferType
112-
elif typing.TYPE_CHECKING:
112+
elif typing.TYPE_CHECKING: # pragma: no cover
113113
from builtins import ellipsis as InferType
114114
else:
115115
InferType = type(Ellipsis)

0 commit comments

Comments
 (0)