update comment for the if logic

This commit is contained in:
Alex Kelly 2025-03-03 11:39:57 -05:00
parent abd1c5023d
commit 0ebf113617

View file

@ -43,7 +43,10 @@ task_data_raw = get_task_data()
task_data = json.loads(task_data_raw)
if "bw" in task_data["tags"] and task_data['status'] == 'completed' and is_from_cli():
# checks if the task was added by bugwarrior (I tag them with bw) and we are
# trying to mark it completed, AND was called from the CLI (via TASK_SRC envvar
# being set)
if "bw" in task_data["tags"] and task_data["status"] == "completed" and is_from_cli():
task_data["status"] = "pending"
subprocess.run(["taskopen", task_data["uuid"]], stdout=subprocess.DEVNULL)