How would I remedy the following error?
for item in data:
if data[item] is None:
del data[item]
RuntimeError: dictionary changed size during iteration
It doesn't actually seem to affect my operation, so I'm wondering if perhaps I should just ignore this error?