examples/dataflow: only import nx when needed
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 8 Jun 2012 20:54:04 +0000 (22:54 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 8 Jun 2012 20:54:04 +0000 (22:54 +0200)
examples/dataflow.py

index 5c3d5fc0e268e33767db2ec0d27a84e9a33d7cd1..f6e786778b4d3c5699df379321d7cad489546b12 100644 (file)
@@ -1,5 +1,4 @@
 import sys
-import networkx as nx
 
 from migen.fhdl import verilog
 from migen.flow.ala import *
@@ -19,5 +18,6 @@ print(verilog.convert(frag))
 
 if len(sys.argv) > 1 and sys.argv[1] == "draw":
        import matplotlib.pyplot as plt
+       import networkx as nx
        nx.draw(g)
        plt.show()