X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/1b823cd6b9d36b549704828005317c2296e75ec5..dc2ec94de3a7e10ace14a2f9540ef1455de5b2d2:/tasklib/task.py diff --git a/tasklib/task.py b/tasklib/task.py index 38aeed7..f070e6b 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -518,6 +518,10 @@ class Task(TaskResource): def pending(self): return self['status'] == six.text_type('pending') + @property + def active(self): + return self['start'] is not None + @property def saved(self): return self['uuid'] is not None or self['id'] is not None