-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
reader/src/reader/_app/__init__.py
Lines 402 to 408 in 7c4df8a
'important': lambda counts: counts.important, | |
# TODO: an unread/unimportant property would be nice | |
'unread': lambda counts: counts.total - counts.read, | |
# TODO: if we keep these average intervals, properties for them might be nice too | |
'avg1m': lambda counts: counts.averages[0], | |
'avg3m': lambda counts: counts.averages[1], | |
'avg1y': lambda counts: counts.averages[2], |
Also useful here: dbrennand/Feederbot#16
dbrennand