KOSASIH / Galactic-Chain

Expected 2 blank lines FLK-E302
Style
Minor
1 occurrence in this check
expected 2 blank lines, found 1
 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()