Remove an unused variable

pull/271/head
Bogdan Opanchuk 2021-06-12 21:43:22 -07:00
parent 18e868ceb2
commit 4517357ce1
1 changed files with 0 additions and 2 deletions

View File

@ -13,8 +13,6 @@ class SecretKey(Serializable, Deserializable):
Umbral secret (private) key.
"""
__SERIALIZATION_INFO = b"SECRET_KEY"
def __init__(self, scalar_key: CurveScalar):
self._scalar_key = scalar_key
# Cached public key. Access it via `PublicKey.from_secret_key()` -