KOSASIH / Galactic-Chain

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