summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/python/function.py b/python/function.py
index 9e018758..80e18250 100644
--- a/python/function.py
+++ b/python/function.py
@@ -58,14 +58,14 @@ class LookupTableEntry(object):
self._from_values = value
@property
- def to_values(self):
+ def to_value(self):
""" """
- return self._to_values
+ return self._to_value
- @to_values.setter
- def to_values(self, value):
+ @to_value.setter
+ def to_value(self, value):
""" """
- self._to_values = value
+ self._to_value = value
class RegisterValue(object):