Skip to content

Commit

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

if sys.version_info >= (3, 8):
from typing import Annotated
else:
if sys.version_info < (3, 9):
from typing_extensions import Annotated
else:
from typing import Annotated

from pydantic import UrlConstraints
from pydantic_core import MultiHostUrl, Url
Expand Down

0 comments on commit 3e08843

Please sign in to comment.