Skip to content

Commit 62ebccc

Browse files
committed
Fix weird 8-space indentation
1 parent 76589f9 commit 62ebccc

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

bitcoin/base58.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
bchr = chr
1919
bord = ord
2020
if sys.version > '3':
21-
long = int
22-
bchr = lambda x: bytes([x])
23-
bord = lambda x: x
21+
long = int
22+
bchr = lambda x: bytes([x])
23+
bord = lambda x: x
2424

2525
import binascii
2626

bitcoin/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
CADDR_TIME_VERSION = 31402
3636

3737
def MoneyRange(nValue):
38-
return 0 <= nValue <= MAX_MONEY
38+
return 0 <= nValue <= MAX_MONEY
3939

4040
def py2_x(h):
4141
"""Convert a hex string to bytes"""

bitcoin/core/script.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
bchr = chr
2222
bord = ord
2323
if sys.version > '3':
24-
long = int
25-
bchr = lambda x: bytes([x])
26-
bord = lambda x: x
24+
long = int
25+
bchr = lambda x: bytes([x])
26+
bord = lambda x: x
2727

2828
import copy
2929
import struct

bitcoin/wallet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
bchr = chr
2222
bord = ord
2323
if sys.version > '3':
24-
bchr = lambda x: bytes([x])
25-
bord = lambda x: x
24+
bchr = lambda x: bytes([x])
25+
bord = lambda x: x
2626

2727
import bitcoin
2828
import bitcoin.base58

0 commit comments

Comments
 (0)