I have a list of tuples, some of which are nested:
[(name,(6,9.0,2.4),link),(name,(7.8,9.0,5),link)...]
I would like to un-nest the inner tuple for each item in the list, but preserve the outer tuple:
[(name,6,9.0,2.4,link),(name,7.8,9.0,5,link)...]
This is different from the solution to the question posed here in which the solution sought to preserve the pairs.