segwit_addr: Use normal comparison for tuple literal (#5712)

This commit is contained in:
Janus Troelsen 2019-10-16 23:50:17 +00:00 committed by ghost43
parent 6992e33ecb
commit b86b3ec1d1

View file

@ -1,3 +1,4 @@
# Copyright (c) 2017 Pieter Wuille
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
@ -118,5 +119,5 @@ def decode(hrp, addr):
def encode(hrp, witver, witprog):
"""Encode a segwit address."""
ret = bech32_encode(hrp, [witver] + convertbits(witprog, 8, 5))
assert decode(hrp, ret) is not (None, None)
assert decode(hrp, ret) != (None, None)
return ret