I have a list of arrays something like this:
list:
[[['23456', '23456']], [['459687', '201667'],['769687', '203416']]
How can I remove the the nested [] to have a list of list something like this:
list:
[['23456', '23456'], ['459687', '201667'],['769687', '203416']]
Any idea?