From 8c7f25020b78168a94cb7a4e0c928b7afe9a6919 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sat, 2 May 2020 11:05:36 -0400 Subject: return NotImplemented instead of None to placate the linter --- python/function.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/function.py') 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 "" % (self.start, self.end) return "" % (self.start, self.end, self.step) + + @property def start(self): """ """ -- cgit v1.3.1