Hello,
In t_remove, we have that code :
if not options.force:
if not tui.confirm("Remove task '%s'" % task.title):
return
do something
How about simplify it with :
if options.force or tui.confirm("Remove task '%s'" % task.title):
do something
a+
--
Sébastien