Skip to content

Commit edd8927

Browse files
authored
PEP 8 fix
1 parent 1edd938 commit edd8927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blockchain_parser/utils_taproot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Encoding(Enum):
2121
BECH32 = 1
2222
BECH32M = 2
2323

24-
24+
2525
CHARSET = "qpzry9x8gf2tvdw0s3jn54khce6mua7l"
2626
BECH32M_CONST = 0x2bc830a3
2727

@@ -123,7 +123,7 @@ def decode(hrp, addr):
123123
return (None, None)
124124
if data[0] == 0 and spec != Encoding.BECH32 \
125125
or data[0] != 0 and spec != Encoding.BECH32M:
126-
return (None, None)
126+
return (None, None)
127127
return (data[0], decoded)
128128

129129

0 commit comments

Comments
 (0)