From 933c56f8fd5cfbd40a3297d55ad9918b44d96f92 Mon Sep 17 00:00:00 2001 From: Marc Durepos Date: Thu, 5 Sep 2024 19:55:18 -0400 Subject: [PATCH] another fix to unhashable type list re #107 --- 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 d3475e1..2eb4bf8 100644 --- a/caldav_sync/models/calendar_event.py +++ b/caldav_sync/models/calendar_event.py @@ -391,7 +391,7 @@ class CalendarEvent(models.Model): changed_vals.update( { "partner_ids": - [Command.set(values.pop("partner_ids"))], + values.pop("partner_ids"), } )