I have an argsList which is passed to my python function from the SDK, and I need to delete the first item in that list. So I used:
but I got a python exception saying "item does not support object deletion".
How else do I go about deleting it from the list???
Code:
del argsList[0]
but I got a python exception saying "item does not support object deletion".
How else do I go about deleting it from the list???