fixed imports in swarm

This commit is contained in:
Alex Haynes 2018-11-11 11:58:48 -05:00
parent 65fe2e400e
commit 35ce827ebe

View File

@ -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):