File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 43
43
)
44
44
import functools
45
45
46
+ from eth .beacon .typing import (
47
+ ShardNumber ,
48
+ BLSPubkey ,
49
+ )
46
50
47
51
if TYPE_CHECKING :
48
52
from eth .beacon .types .attestation_data import AttestationData # noqa: F401
51
55
from eth .beacon .types .fork_data import ForkData # noqa: F401
52
56
from eth .beacon .types .slashable_vote_data import SlashableVoteData # noqa: F401
53
57
from eth .beacon .types .validator_records import ValidatorRecord # noqa: F401
54
- from eth .beacon .typing import (
55
- ShardNumber ,
56
- BLSPubkey ,
57
- )
58
58
59
59
60
60
def _get_element_from_recent_list (
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ def __init__(self,
35
35
proposal_signature_1 : BLSSignatureAggregated = EMPTY_SIGNATURE ,
36
36
proposal_signature_2 : BLSSignatureAggregated = EMPTY_SIGNATURE ) -> None :
37
37
super ().__init__ (
38
- proposer_index ,
39
- proposal_data_1 ,
40
- proposal_data_2 ,
41
- proposal_signature_1 ,
42
- proposal_signature_2 ,
38
+ proposer_index = proposer_index ,
39
+ proposal_data_1 = proposal_data_1 ,
40
+ proposal_data_2 = proposal_data_2 ,
41
+ proposal_signature_1 = proposal_signature_1 ,
42
+ proposal_signature_2 = proposal_signature_2 ,
43
43
)
You can’t perform that action at this time.
0 commit comments