fix imports in graph.py

Although graph.py never used DisAsm, it was still trying to import the
deprecated class. Removed.
This commit is contained in:
Bryan Bishop 2013-01-27 17:03:51 -06:00
parent 26ed5760a2
commit 74a4d65884

View File

@ -2,9 +2,12 @@
import networkx as nx import networkx as nx
from romstr import RomStr, DisAsm, \ from romstr import (
relative_jumps, call_commands, \ RomStr,
relative_unconditional_jumps relative_jumps,
call_commands,
relative_unconditional_jumps,
)
class RomGraph(nx.DiGraph): class RomGraph(nx.DiGraph):
""" Graphs various functions pointing to each other. """ Graphs various functions pointing to each other.