diff --git a/application/database.py b/application/database.py index 18a8d53..21e1622 100644 --- a/application/database.py +++ b/application/database.py @@ -41,7 +41,9 @@ class TodoDatabase: # if self.datebase[date] is None: # return [] if date not in self.database: - return [] + if "recurring" not in self.database: + return [] + return self.database["recurring"] return self.database[date] def _update_quotes(self):