I am having issues setting an attribute within a python caller.
I am reading in a list of strings, mutating the components in the list, then trying to overwrite the same list. Currently, the results of the output are the same as the input.
Below is an example of how I am doing it.
x = feature.getAttribute(list{}.item)
for i in len(x):
<mutate items in list>
feature.setAttribute("list{}.item", x)
Can anyone let me know why this is not working, and how I can fix this? Thank you.