mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix unsetting of value
This commit is contained in:
parent
9c2c1118ac
commit
0d8ab1c17e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue