diff --git a/contrib/testgen/base58.py b/contrib/testgen/base58.py --- a/contrib/testgen/base58.py +++ b/contrib/testgen/base58.py @@ -18,10 +18,10 @@ if str != bytes: # Python 3.x - def ord(c): + def ord(c): # noqa: A001 return c - def chr(n): + def chr(n): # noqa: A001 return bytes((n,)) __b58chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'