KOSASIH / Galactic-Chain

Missing class docstring PY-D0002
Documentation
Minor
1 occurrence in this check
Docstring missing for class EllipticCurveArithmetic
 3from cryptography.hazmat.primitives.asymmetric import ec
 4from cryptography.hazmat.backends import default_backend
 5
 6class EllipticCurveArithmetic: 7    def __init__(self):
 8        self.curve = ec.SECP256K1()
 9        self.backend = default_backend()