From 70e857c4bbacd966f8601b9eac704eab2bf12820 Mon Sep 17 00:00:00 2001 From: Marc Durepos Date: Thu, 5 Sep 2024 17:17:16 -0400 Subject: [PATCH] another fix to unhashable type list re PYTHON-ODOO-BEMADE-J --- caldav_sync/models/calendar_event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caldav_sync/models/calendar_event.py b/caldav_sync/models/calendar_event.py index ecb732f..d3475e1 100644 --- a/caldav_sync/models/calendar_event.py +++ b/caldav_sync/models/calendar_event.py @@ -390,7 +390,7 @@ class CalendarEvent(models.Model): if attendee_ids - existing_instance.partner_ids: changed_vals.update( { - "partner_ids", + "partner_ids": [Command.set(values.pop("partner_ids"))], } )