diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-12-08 14:27:42 +0000 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-12-08 14:27:42 +0000 |
commit | 10da94464be481fe77965bbe035744c3c2cc29ad (patch) | |
tree | 199bdbc19fc771f9aec2495a07d3afc1e2e6a9ef /phabricator_tasks/tasks.py | |
parent | 4c4983459e5f554684b6de2827cc274b8e98c103 (diff) | |
download | vyos-infrastructure-10da94464be481fe77965bbe035744c3c2cc29ad.tar.gz vyos-infrastructure-10da94464be481fe77965bbe035744c3c2cc29ad.zip |
Remove tagging by difficulty level
That field is no longer used
Diffstat (limited to 'phabricator_tasks/tasks.py')
-rw-r--r-- | phabricator_tasks/tasks.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/phabricator_tasks/tasks.py b/phabricator_tasks/tasks.py index 06d4a85..fb9b2e5 100644 --- a/phabricator_tasks/tasks.py +++ b/phabricator_tasks/tasks.py @@ -70,11 +70,3 @@ for task in tasks: pass else: add_project(task['task_id'], UNCATEGORIZED_TASKS_PROJECT, TOKEN) - - # Tag tasks "Bug" for ease of searching - if task['difficulty_level'] == 'easy': - print(f'Categorizing task T{task["task_id"]} as a beginner task based on its difficulty level') - if DRYRUN: - pass - else: - add_project(task['task_id'], BUGS_PROJECT, TOKEN) |