In theory task.tags.remove(tag)
might also work, but I'm not sure of it will automatically be updated on the backend
SmarmySeaurchin8
updated_tags = task.tags
updated_tags.remove(tag)
task.tags = updated_tags
HmmAttributeError: 'Task' object has no attribute 'tags'