From 538aa7924edbc231a81c147718b4ad150ae494da Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Mon, 21 Sep 2020 15:33:56 -0700 Subject: [PATCH] Fix imports --- nucypher/network/server.py | 2 +- nucypher/network/trackers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nucypher/network/server.py b/nucypher/network/server.py index 8718a355a..cc83da811 100644 --- a/nucypher/network/server.py +++ b/nucypher/network/server.py @@ -30,7 +30,7 @@ from umbral.kfrags import KFrag from web3.exceptions import TimeExhausted import nucypher -from crypto.api import InvalidNodeCertificate +from nucypher.crypto.api import InvalidNodeCertificate from nucypher.config.constants import MAX_UPLOAD_CONTENT_LENGTH from nucypher.config.storages import ForgetfulNodeStorage from nucypher.crypto.keypairs import HostingKeypair diff --git a/nucypher/network/trackers.py b/nucypher/network/trackers.py index d34741c20..bb18f3b9f 100644 --- a/nucypher/network/trackers.py +++ b/nucypher/network/trackers.py @@ -22,7 +22,7 @@ from twisted.internet import reactor from twisted.internet.task import LoopingCall from typing import Union -from crypto.api import InvalidNodeCertificate +from nucypher.crypto.api import InvalidNodeCertificate from nucypher.network.exceptions import NodeSeemsToBeDown from nucypher.network.middleware import RestMiddleware from nucypher.network.nodes import NodeSprout