fix formatting

This commit is contained in:
protolambda 2019-06-04 18:18:18 +02:00
parent 6168a90a20
commit 4bf3a26afc
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 1 additions and 1 deletions

View File

@ -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):