Skip to content

Commit c2d3623

Browse files
authored
Merge pull request #1399 from hwwhww/fix_type_hint
Fix type hints
2 parents 8f74e6b + 582bbbc commit c2d3623

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)