mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08: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
|
||||
|
||||
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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user