Skip to content

Commit

Permalink
[FIX] mozaik_partner_rest: _prepare_update_values has no call to super()
Browse files Browse the repository at this point in the history
  • Loading branch information
marielejeune committed Sep 19, 2023
1 parent d219ae1 commit 2b06394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mozaik_partner_rest/services/partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def _prepare_address_fields(self, values, partner):
return values

def _prepare_update_values(self, values, partner):
res = super()._prepare_update_values(values, partner)
res = values.copy()
if "subordinate_ids" in res:
res["subordinate_ids"] = [(6, 0, res["subordinate_ids"])]
if any(
Expand Down

0 comments on commit 2b06394

Please sign in to comment.