From 3ce63dd74df28e886ad368b7fe70468c1f8c0fbc Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Sun, 3 Mar 2019 16:39:47 +0100 Subject: [PATCH] Added tasks interface to panel design --- Calendar/PanelDesign.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Calendar/PanelDesign.py b/Calendar/PanelDesign.py index c4d89ca..c8b46b0 100644 --- a/Calendar/PanelDesign.py +++ b/Calendar/PanelDesign.py @@ -12,4 +12,7 @@ class PanelDesign (DesignEntity): raise NotImplementedError("Functions needs to be implemented") def add_rssfeed (self, rss): + raise NotImplementedError("Functions needs to be implemented") + + def add_taks (self, tasks): raise NotImplementedError("Functions needs to be implemented") \ No newline at end of file