walker_zhao
Results
1
comments of
walker_zhao
I got the same error. use the function ``` def flatten(x): result = [] for el in x: if isinstance(el, tuple): result.extend(flatten(el)) else: result.append(el) return result ``` in `eval_op=flatten(list(names_to_updates.values())),`, it...