diff --git a/hypha/apply/funds/workflow.py b/hypha/apply/funds/workflow.py index f5525bbf05..4a5298c211 100644 --- a/hypha/apply/funds/workflow.py +++ b/hypha/apply/funds/workflow.py @@ -1212,7 +1212,10 @@ def get_stage_change_actions(): active_statuses = [ status for status, _ in PHASES - if "accepted" not in status and "rejected" not in status and "invited" not in status and "withdrawn" not in status + if "accepted" not in status + and "rejected" not in status + and "invited" not in status + and "withdrawn" not in status ] @@ -1294,7 +1297,6 @@ def get_withdrawn_statuses(): return withdrawn_statuses -ext_or_higher_statuses = get_ext_or_higher_statuses() review_statuses = get_review_statuses() ext_review_statuses = get_ext_review_statuses() ext_or_higher_statuses = get_ext_or_higher_statuses()