Skip to content

Commit

Permalink
Fix get_origin import
Browse files Browse the repository at this point in the history
  • Loading branch information
sean committed Apr 26, 2023
1 parent 87c33be commit 1bd4034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typic/compat.py
Expand Up @@ -43,7 +43,7 @@
try:
from typing import get_origin # type: ignore
except ImportError: # pragma: nocover
from typing_extensions import get_args # type: ignore
from typing_extensions import get_origin # type: ignore
try:
from typing import get_args # type: ignore
except ImportError: # pragma: nocover
Expand Down

0 comments on commit 1bd4034

Please sign in to comment.