mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 10:54:59 -05:00
fix formatting
This commit is contained in:
@@ -41,7 +41,7 @@ def next_power_of_two(v: int) -> int:
|
||||
"""
|
||||
if v == 0:
|
||||
return 1
|
||||
return 1 << (v-1).bit_length()
|
||||
return 1 << (v - 1).bit_length()
|
||||
|
||||
|
||||
def merkleize_chunks(chunks):
|
||||
|
||||
Reference in New Issue
Block a user