diff options
| author | Peter LaFosse <peter@vector35.com> | 2020-05-02 11:05:36 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2020-05-03 13:20:56 -0400 |
| commit | 8c7f25020b78168a94cb7a4e0c928b7afe9a6919 (patch) | |
| tree | 2c1d073a44b962322d4526a6047f9b506fb5c6d1 /python/function.py | |
| parent | 7934b29ab5aae1f50c054cca60a95f171758737d (diff) | |
return NotImplemented instead of None to placate the linter
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 2 |
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): """ """ |
