From 74a4d6588458a05d2e833f12ea2c80df10b0865d Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 27 Jan 2013 17:03:51 -0600 Subject: fix imports in graph.py Although graph.py never used DisAsm, it was still trying to import the deprecated class. Removed. --- extras/graph.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'extras/graph.py') diff --git a/extras/graph.py b/extras/graph.py index 062985e4d..b5450835f 100644 --- a/extras/graph.py +++ b/extras/graph.py @@ -2,9 +2,12 @@ import networkx as nx -from romstr import RomStr, DisAsm, \ - relative_jumps, call_commands, \ - relative_unconditional_jumps +from romstr import ( + RomStr, + relative_jumps, + call_commands, + relative_unconditional_jumps, +) class RomGraph(nx.DiGraph): """ Graphs various functions pointing to each other. -- cgit v1.2.3