Skip to content

Commit ee982c1

Browse files
committed
exclude TYPE_CHECKING from coverage report
Signed-off-by: gruebel <[email protected]>
1 parent 5fe86a3 commit ee982c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openfeature/flag_evaluation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from openfeature._backports.strenum import StrEnum
77
from openfeature.exception import ErrorCode
88

9-
if typing.TYPE_CHECKING: # resolves a circular dependency in type annotations
9+
if typing.TYPE_CHECKING: # pragma: no cover
10+
# resolves a circular dependency in type annotations
1011
from openfeature.hook import Hook, HookHints
1112

1213

0 commit comments

Comments
 (0)