Fix wrong import

This commit is contained in:
NIC619
2019-10-18 15:44:07 +08:00
parent 211e2f6dd0
commit 9889cb8ab1
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,6 @@ import io
import itertools
from typing import Optional, Tuple
from crypto.authenticated_encryption import InvalidMACException
import multihash
from libp2p.crypto.authenticated_encryption import (
@ -12,6 +11,7 @@ from libp2p.crypto.authenticated_encryption import (
from libp2p.crypto.authenticated_encryption import (
initialize_pair as initialize_pair_for_encryption,
)
from libp2p.crypto.authenticated_encryption import InvalidMACException
from libp2p.crypto.authenticated_encryption import MacAndCipher as Encrypter
from libp2p.crypto.ecc import ECCPublicKey
from libp2p.crypto.exceptions import MissingDeserializerError