summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-01-09 23:00:18 -0500
committerPeter LaFosse <peter@vector35.com>2017-01-09 23:00:18 -0500
commit1230404d0b7cd7a00fd3da7ad2aebb66d663fd08 (patch)
treeef61c332c41edba4ecd49222f32fce9fd99b75bc /python/function.py
parentaae6c3aecdb04e8a6e33799287737a33a634418d (diff)
Use new style class definitions, add __init__ BinaryDataNotification
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py
index 1843dd3d..7d03585c 100644
--- a/python/function.py
+++ b/python/function.py
@@ -830,7 +830,7 @@ class DisassemblyTextLine(object):
return "<%#x: %s>" % (self.address, str(self))
-class FunctionGraphEdge:
+class FunctionGraphEdge(object):
def __init__(self, branch_type, arch, target, points):
self.type = BranchType(branch_type)
self.arch = arch