I have the following method to replace values in a data recursivly:
def recursive_replace_all(data, old_value, new_value): if data is None: return Non