diff --git a/Calendar/CalendarInterface.py b/Calendar/CalendarInterface.py index 53589bd..588c3d0 100644 --- a/Calendar/CalendarInterface.py +++ b/Calendar/CalendarInterface.py @@ -11,8 +11,8 @@ class CalendarInterface (DataSourceInterface): def get_day_events(self, date): raise NotImplementedError("Functions needs to be implemented") - def get_month_events(self, month): + def get_month_events(self, month = -1): raise NotImplementedError("Functions needs to be implemented") - def get_week_events(self, week): + def get_week_events(self, week = -1): raise NotImplementedError("Functions needs to be implemented") \ No newline at end of file