1
0

Fix "== None" linter fails

Credit to Zoltan Konder for pointing me to this issue.
This commit is contained in:
Jeremy Rand
2022-05-24 02:39:11 +00:00
parent cac4b6f92c
commit 1aa444e0f8
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ class TestBolt11(ElectrumTestCase):
b.tags = [t for t in b.tags if t[0] != 'h' and t[0] != 'n']
assert b.pubkey.serialize() == PUBKEY, (hexlify(b.pubkey.serialize()), hexlify(PUBKEY))
assert b.signature != None
assert b.signature is not None
# Unset these, they are generated during encoding/decoding
b.pubkey = None