From 75ec2facce27959ccf1dfab537cb5e6f4ae923a5 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 24 Sep 2019 10:07:33 -0700 Subject: [PATCH] linter fix --- libp2p/crypto/ed25519.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libp2p/crypto/ed25519.py b/libp2p/crypto/ed25519.py index cde2641..11a1668 100644 --- a/libp2p/crypto/ed25519.py +++ b/libp2p/crypto/ed25519.py @@ -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: