1 parent a1cc5a2 commit f54c81eCopy full SHA for f54c81e
1 file changed
contingent/contingent/projectlib.py
@@ -106,10 +106,8 @@ def wrapper(*args):
106
107
def check_invalid(*args):
108
task = Task(wrapper, args)
109
- cached_value = self._get_from_cache(task)
110
current_value = task_function(*args)
111
- if cached_value != current_value:
112
- self.set(task, current_value)
+ self.set(task, current_value)
113
114
wrapper.check_invalid = check_invalid
115
0 commit comments