Changed names
This commit is contained in:
parent
b57800b0d8
commit
1a330d9e73
1 changed files with 5 additions and 4 deletions
|
@ -1,8 +1,7 @@
|
||||||
class CalendarEvent (object):
|
class CalendarEvent (object):
|
||||||
"""Defines a calendar event, independent of any implementation"""
|
"""Defines a calendar event, independent of any implementation"""
|
||||||
def __init__ (self):
|
def __init__ (self):
|
||||||
self.date = None
|
self.datetime = None
|
||||||
self.time = None
|
|
||||||
self.duration = None
|
self.duration = None
|
||||||
|
|
||||||
self.title = None
|
self.title = None
|
||||||
|
@ -10,5 +9,7 @@ class CalendarEvent (object):
|
||||||
self.attendees = []
|
self.attendees = []
|
||||||
self.highlight = None
|
self.highlight = None
|
||||||
|
|
||||||
self.place = None
|
self.calendar_name = None
|
||||||
self.fetch_time = None
|
|
||||||
|
self.location = None
|
||||||
|
self.fetch_datetime = None
|
Loading…
Reference in a new issue