summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2020-05-02 11:05:36 -0400
committerPeter LaFosse <peter@vector35.com>2020-05-03 13:20:56 -0400
commit8c7f25020b78168a94cb7a4e0c928b7afe9a6919 (patch)
tree2c1d073a44b962322d4526a6047f9b506fb5c6d1 /python/function.py
parent7934b29ab5aae1f50c054cca60a95f171758737d (diff)
return NotImplemented instead of None to placate the linter
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py
index 7f9648f5..75a50f12 100644
--- a/python/function.py
+++ b/python/function.py
@@ -263,6 +263,8 @@ class ValueRange(object):
return "<range: %#x to %#x>" % (self.start, self.end)
return "<range: %#x to %#x, step %#x>" % (self.start, self.end, self.step)
+
+
@property
def start(self):
""" """