I have an array that looks like this:
[list([130365]) list([80476]) list([999078, 999078]) list([86833, 86833])
list([63767, 63767]) list([63777, 63777]) list([830166, 830166])]
>>> type(results)
<class 'numpy.ndarray'>
And I want to transform it into an array containing just the items:
[130365 80476 999078 86833 86833 63767 63767 63777 63777 830166 830166]
Everything I've tried so far didn't work, how can I do this?