linter fix

This commit is contained in:
Alex Stokes 2019-09-24 10:07:33 -07:00
parent 673ce40133
commit 75ec2facce
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086

View File

@ -1,12 +1,12 @@
from Crypto.Hash import SHA256
from libp2p.crypto.keys import KeyPair, KeyType, PrivateKey, PublicKey
from nacl.exceptions import BadSignatureError
from nacl.public import PrivateKey as PrivateKeyImpl
from nacl.public import PublicKey as PublicKeyImpl
from nacl.signing import SigningKey, VerifyKey
import nacl.utils as utils
from libp2p.crypto.keys import KeyPair, KeyType, PrivateKey, PublicKey
class Ed25519PublicKey(PublicKey):
def __init__(self, impl: PublicKeyImpl) -> None: