mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
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:
parent
26ed5760a2
commit
74a4d65884
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user