From 35ce827ebea9ac1135034b8c62a50eb7b02319fe Mon Sep 17 00:00:00 2001 From: Alex Haynes Date: Sun, 11 Nov 2018 11:58:48 -0500 Subject: [PATCH] fixed imports in swarm --- network/swarm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network/swarm.py b/network/swarm.py index d9f2b59..2e1800f 100644 --- a/network/swarm.py +++ b/network/swarm.py @@ -1,6 +1,6 @@ from .network_interface import INetwork -from ..connection.muxed_connection import MuxedConnection -from ..connection.raw_connection import RawConnection +from muxer.mplex.muxed_connection import MuxedConn +from transport.connection.raw_connection import RawConnection class Swarm(INetwork):