list not emptying it seems[solved]

problem
del local_list_comprehension[:] would not delete the list contents

solved:
made the list global, non list comprehension, del global_list_contents[:] works