show recurring todos on days without data entry
This commit is contained in:
parent
0c00bcaa56
commit
116df7c203
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user