Skip to content

Commit

Permalink
🐛 fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
yezz123 committed May 13, 2024
1 parent 3e08843 commit 79124c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydantic_extra_types/dsn.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys

if sys.version_info < (3, 9):
from typing_extensions import Annotated
if sys.version_info < (3, 9): # pragma: no cover
from typing_extensions import Annotated # pragma: no cover
else:
from typing import Annotated

Expand Down

0 comments on commit 79124c7

Please sign in to comment.