fix unsetting of value

This commit is contained in:
Jakub Trllo 2022-08-23 15:35:35 +02:00
parent 9c2c1118ac
commit 0d8ab1c17e

View file

@ -444,7 +444,7 @@ class UpdateOperation(AbstractOperation):
set_data = {}
for key, value in self._update_data.items():
if value is REMOVED_VALUE:
unset_data[key] = value
unset_data[key] = None
else:
set_data[key] = value