From 878fe8d923eb6601f97b4c4e1766eb122086eeab Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Sun, 8 Dec 2024 14:28:18 +0000 Subject: Remove tagging of uncategorized tasks Now we can simply search by that field --- phabricator_tasks/tasks.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'phabricator_tasks/tasks.py') diff --git a/phabricator_tasks/tasks.py b/phabricator_tasks/tasks.py index fb9b2e5..63f5626 100644 --- a/phabricator_tasks/tasks.py +++ b/phabricator_tasks/tasks.py @@ -62,11 +62,3 @@ for task in tasks: else: unassign_task(task['task_id'], TOKEN) - # Tag tasks "Uncategorized tasks" to draw maintainer attention to them - # if "Issue type" is not specified - if task['issue_type'] == 'unspecified': - print(f'Marking task T{task["task_id"]} uncategorized based on its issue type') - if DRYRUN: - pass - else: - add_project(task['task_id'], UNCATEGORIZED_TASKS_PROJECT, TOKEN) -- cgit v1.2.3