From f924fff38ff3c783df0c409c987b90c4f9a2a4d2 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. original-commit-id: 74a4d6588458a05d2e833f12ea2c80df10b0865d --- graph.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'graph.py') diff --git a/graph.py b/graph.py index 062985e..b545083 100644 --- a/graph.py +++ b/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