Skip to content

Commit 17f4de0

Browse files
committed
wip
1 parent 117c09a commit 17f4de0

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

client/types/blocks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from typing import NotRequired, TypedDict
1+
from typing import TypedDict
2+
3+
from typing_extensions import NotRequired
24

35
from client.types import PaginatedQuery
46
from client.types.transactions import Transaction

client/types/evm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from typing import Literal, NotRequired, TypedDict
1+
from typing import Literal, TypedDict
2+
3+
from typing_extensions import NotRequired
24

35

46
PayloadData = dict[str, str | int | float]

client/types/node.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from typing import NotRequired, TypedDict
1+
from typing import TypedDict
2+
3+
from typing_extensions import NotRequired
24

35
from client.types.blocks import Block
46

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ requests==2.32.3
2323
responses==0.10.15
2424
setuptools==70.1.0
2525
six==1.16.0
26+
typing_extensions==4.15.0
2627
urllib3==2.2.2

0 commit comments

Comments
 (0)