Skip to content

Commit

Permalink
Fallback to typing extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
tcamise-gpsw committed Jul 19, 2024
1 parent 0d11aa5 commit 129fc9a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion demos/python/sdk_wireless_camera_control/open_gopro/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@

from __future__ import annotations

from typing import Any, Callable, Coroutine, TypeAlias, Union
from typing import Any, Callable, Coroutine, Union

try:
from typing import TypeAlias
except ImportError:
from typing_extensions import TypeAlias

import construct
from google.protobuf.message import Message
Expand Down

0 comments on commit 129fc9a

Please sign in to comment.