From 7f9a6a3102b9c65c9da23bb7171b9d13f4900642 Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Tue, 26 Feb 2019 17:30:53 +0100 Subject: [PATCH] Added and removed some parameters in CalendarInterface --- Calendar/CalendarInterface.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Calendar/CalendarInterface.py b/Calendar/CalendarInterface.py index cc1e4a3..53589bd 100644 --- a/Calendar/CalendarInterface.py +++ b/Calendar/CalendarInterface.py @@ -2,17 +2,17 @@ from DataSourceInterface import DataSourceInterface class CalendarInterface (DataSourceInterface): """Interface for fetching and processing calendar event information.""" - def get_upcoming_events(self, count): + def get_upcoming_events(self): raise NotImplementedError("Functions needs to be implemented") def get_today_events(self): raise NotImplementedError("Functions needs to be implemented") - def get_day_events(self): + def get_day_events(self, date): raise NotImplementedError("Functions needs to be implemented") - def get_month_events(self, count): + def get_month_events(self, month): raise NotImplementedError("Functions needs to be implemented") - def get_week_events(self, count): + def get_week_events(self, week): raise NotImplementedError("Functions needs to be implemented") \ No newline at end of file