From c80529eb9e1851b0567fae49f49e5a228312725f Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 15 Nov 2022 03:55:09 +0200 Subject: [PATCH] Suppress pylint protected-access in test_ecc --- src/pyelliptic/tests/test_ecc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyelliptic/tests/test_ecc.py b/src/pyelliptic/tests/test_ecc.py index 02217100..6327d333 100644 --- a/src/pyelliptic/tests/test_ecc.py +++ b/src/pyelliptic/tests/test_ecc.py @@ -32,6 +32,7 @@ class TestECC(unittest.TestCase): def test_decode_keys(self): """Check keys decoding""" + # pylint: disable=protected-access curve_secp256k1 = pyelliptic.OpenSSL.get_curve('secp256k1') curve, raw_privkey, _ = pyelliptic.ECC._decode_privkey( sample_privkey_bin)