From b41410eade5c4ddb7333949ee928ee93a5240493 Mon Sep 17 00:00:00 2001 From: ericsson Date: Wed, 13 May 2020 16:25:16 +0300 Subject: [PATCH] lint problem fixed --- specs/phase1/shard-transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/phase1/shard-transition.md b/specs/phase1/shard-transition.md index 227ea9343..68bfb3507 100644 --- a/specs/phase1/shard-transition.md +++ b/specs/phase1/shard-transition.md @@ -136,7 +136,7 @@ def is_valid_fraud_proof(beacon_state: BeaconState, if offset_index == 0: shard = get_shard(beacon_state, attestation) shard_states = beacon_parent_block.body.shard_transitions[shard].shard_states - shard_state = shard_states[len(shard_states)-1] + shard_state = shard_states[len(shard_states) - 1] else: shard_state = transition.shard_states[offset_index - 1] # Not doing the actual state updates here.