Skip to content

Commit 582bbbc

Browse files
committed
Fix type hint
1 parent 8f74e6b commit 582bbbc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

eth/beacon/block_proposal.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import (
22
NamedTuple,
3-
Tuple,
43
TYPE_CHECKING,
54
)
65

@@ -18,6 +17,6 @@
1817
(
1918
('block', 'BaseBeaconBlock'),
2019
('shard_id', int),
21-
('shard_block_hash', Tuple[Hash32]),
20+
('shard_block_hash', Hash32),
2221
)
2322
)

0 commit comments

Comments
 (0)