summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattori Birnbaum <mattori.birnbaum@gmail.com>2021-05-11 20:02:04 +0900
committerChristian Geier <geier@lostpackets.de>2023-10-28 16:40:56 +0200
commit293fce7ab5ae817070ffe62dd42f70ff7592386f (patch)
tree95d09fe58f71150f541762b56da3cd22e658426b
parent126263ca3c96ee13fce4e1843b80a9aaa848f1fb (diff)
remove unnecessary dict call
-rw-r--r--khal/khalendar/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/khal/khalendar/event.py b/khal/khalendar/event.py
index 2197aee6..fe506b23 100644
--- a/khal/khalendar/event.py
+++ b/khal/khalendar/event.py
@@ -720,7 +720,7 @@ class Event:
attributes['status'] = self.status + ' ' if self.status else ''
attributes['cancelled'] = 'CANCELLED ' if self.status == 'CANCELLED' else ''
- return dict(attributes)
+ return attributes
def duplicate(self) -> 'Event':
"""duplicate this event's PROTO event"""