Skip to content

Commit 42c8163

Browse files
committed
fix: update imports to use typing_extensions for compatibility reasons
1 parent be02f73 commit 42c8163

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pydoll/protocol/emulation/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from enum import Enum
2-
from typing import NotRequired, TypedDict
2+
3+
from typing_extensions import NotRequired, TypedDict
34

45

56
class ScreenOrientationType(str, Enum):

pydoll/protocol/network/events.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from enum import Enum
2-
from typing import NotRequired, TypedDict
2+
3+
from typing_extensions import NotRequired, TypedDict
34

45
from pydoll.protocol.base import CDPEvent
56
from pydoll.protocol.network.types import (

0 commit comments

Comments
 (0)