Skip to content

Commit 4e281fd

Browse files
committed
And now coverage, hooray...
1 parent 71cbd00 commit 4e281fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

referencing/_core.py

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

1111
try:
1212
from typing_extensions import TypeVar
13-
except ImportError:
13+
except ImportError: # pragma: no cover
1414
from typing import TypeVar
1515

1616
from referencing import exceptions

referencing/retrieval.py

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

1111
try:
1212
from typing_extensions import TypeVar
13-
except ImportError:
13+
except ImportError: # pragma: no cover
1414
from typing import TypeVar
1515

1616
from referencing import Resource

referencing/typing.py

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

1010
try:
1111
from typing_extensions import TypeVar
12-
except ImportError:
12+
except ImportError: # pragma: no cover
1313
from typing import TypeVar
1414

1515
if TYPE_CHECKING:

0 commit comments

Comments
 (0)