From 330b17e2a50caa70adb25007b9be0bf0c3002d3d Mon Sep 17 00:00:00 2001 From: rlbr Date: Mon, 19 Nov 2018 15:56:25 -0600 Subject: [PATCH] Added placeholder methods --- gapi/calendar_api.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gapi/calendar_api.py b/gapi/calendar_api.py index 2dc5ee5..69a22c0 100644 --- a/gapi/calendar_api.py +++ b/gapi/calendar_api.py @@ -44,9 +44,13 @@ class event: self.summary = summary, self.description = description, self.location = location - def add_reminder(self,minutes_till,method = 'popup'): + def add_reminder(self,minutes_until,method = 'popup'): pass - def add_weekly_recurrence(self,*days) + def add_weekly_recurrence(self,*days): + pass + def json(self): + pass + class calendar_api(API): def __init__(self, app_name, @@ -113,4 +117,4 @@ class calendar_api(API): break return ret if __name__ == "__main__": - my_api = calendar_api(APPLICATION_NAME,r'..\test\calendar\client_secret.json',r'..\test\calendar') \ No newline at end of file + my_api = calendar_api(APPLICATION_NAME,r'..\test\calendar\client_secret.json',r'..\test\calendar')