Attempting to remove a label from a bucket does not appear to work:
# {'example': 'label'}
labels = bucket.labels
if 'example' in labels:
del labels['example']
# {}
bucket.labels = labels
bucket.patch()
# Still {'example': 'label'}
pprint.pprint(bucket.labels)
Attempting to remove a label from a bucket does not appear to work: