diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2016-05-24 05:54:21 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2016-05-24 05:54:21 -0400 |
| commit | 2cca7019835bad583b5bbbce66b26065f57db4ef (patch) | |
| tree | 50bbf82826072f82d85305bec470642161e0ae6d /python/__init__.py | |
| parent | 97f1e422ea6a7825148ec0a1c64906695950053e (diff) | |
return instead of assignment to result
Diffstat (limited to 'python/__init__.py')
| -rw-r--r-- | python/__init__.py | 2 |
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): |
