summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/function.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py
index 5dfa9528..0a61acc1 100644
--- a/python/function.py
+++ b/python/function.py
@@ -1436,7 +1436,7 @@ class Function(object):
@property
def highest_address(self):
- "The highest virtual address contained in a function."""
+ """The highest virtual address contained in a function."""
return max(self, key=lambda block:block.end).end - 1
@property