summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2016-05-24 05:54:21 -0400
committerJordan Wiens <jordan@psifertex.com>2016-05-24 05:54:21 -0400
commit2cca7019835bad583b5bbbce66b26065f57db4ef (patch)
tree50bbf82826072f82d85305bec470642161e0ae6d /python/__init__.py
parent97f1e422ea6a7825148ec0a1c64906695950053e (diff)
return instead of assignment to result
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/__init__.py b/python/__init__.py
index fb07cc4d..cdbce895 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -2490,7 +2490,7 @@ class FunctionGraphTextLine:
return result
def __repr__(self):
- result = "<0x%x: %s>" % (self.address, str(self))
+ return "<0x%x: %s>" % (self.address, str(self))
class FunctionGraphEdge:
def __init__(self, branch_type, arch, target, points):