From 1a330d9e73caae78748903d906b2245b3ffd96e4 Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Mon, 25 Feb 2019 21:43:27 +0100 Subject: [PATCH] Changed names --- Calendar/CalendarEvent.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Calendar/CalendarEvent.py b/Calendar/CalendarEvent.py index 0510927..2525d92 100644 --- a/Calendar/CalendarEvent.py +++ b/Calendar/CalendarEvent.py @@ -1,8 +1,7 @@ class CalendarEvent (object): """Defines a calendar event, independent of any implementation""" def __init__ (self): - self.date = None - self.time = None + self.datetime = None self.duration = None self.title = None @@ -10,5 +9,7 @@ class CalendarEvent (object): self.attendees = [] self.highlight = None - self.place = None - self.fetch_time = None \ No newline at end of file + self.calendar_name = None + + self.location = None + self.fetch_datetime = None \ No newline at end of file