Skip to content

Commit

Permalink
And now coverage, hooray...
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Dec 29, 2024
1 parent 71cbd00 commit 4e281fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion referencing/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try:
from typing_extensions import TypeVar
except ImportError:
except ImportError: # pragma: no cover
from typing import TypeVar

from referencing import exceptions
Expand Down
2 changes: 1 addition & 1 deletion referencing/retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try:
from typing_extensions import TypeVar
except ImportError:
except ImportError: # pragma: no cover
from typing import TypeVar

from referencing import Resource
Expand Down
2 changes: 1 addition & 1 deletion referencing/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

try:
from typing_extensions import TypeVar
except ImportError:
except ImportError: # pragma: no cover
from typing import TypeVar

if TYPE_CHECKING:
Expand Down

0 comments on commit 4e281fd

Please sign in to comment.