Skip to content
Snippets Groups Projects
Commit 24baea73 authored by Bob Lantz's avatar Bob Lantz
Browse files

Changed networkx import line; we may have to deal with version issues here.

parent 87737a70
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,11 @@
setup for testing, and can even be emulated with the Mininet package.
'''
from networkx.classes.graph import Graph
# BL: we may have to fix compatibility here.
# networkx is also a fairly heavyweight dependency
# from networkx.classes.graph import Graph
from networkx import Graph
from mininet.node import SWITCH_PORT_BASE
class NodeID(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment