From a36bf87e109485f9e056d2cd4e8f54ab320140dd Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 15 May 2019 21:35:36 -0700 Subject: two bugs for the refactor -- arch has a caching getter that must be use for basicblock and a typo in function.py --- python/function.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'python/function.py') 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): -- cgit v1.3.1