Skip to content

Commit d69e88f

Browse files
committed
NIT: Reformat with parenthesis rather than \
1 parent b04ff83 commit d69e88f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bitcoin/bloom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def MurmurHash3(nHashSeed, vDataToHash):
3838

3939
# body
4040
i = 0
41-
while i < len(vDataToHash) - len(vDataToHash) % 4 \
42-
and len(vDataToHash) - i >= 4:
41+
while (i < len(vDataToHash) - len(vDataToHash) % 4
42+
and len(vDataToHash) - i >= 4):
4343

4444
k1 = struct.unpack(b"<L", vDataToHash[i:i+4])[0]
4545

0 commit comments

Comments
 (0)