Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
add typing extensions import
Browse files Browse the repository at this point in the history
  • Loading branch information
spyoungtech committed Jul 19, 2022
1 parent 85ea941 commit bf04584
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ahk/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
from typing import runtime_checkable
from typing import Tuple
from typing import Type
from typing import TypeGuard

try:
from typing import TypeGuard
except ImportError:
from typing_extensions import TypeGuard
from typing import TypeVar
from typing import Union

Expand Down

0 comments on commit bf04584

Please sign in to comment.