Skip to content

Commit

Permalink
Clean up from cherry-pick/rebase
Browse files Browse the repository at this point in the history
Removed a redeclared variable and reformatted.

Issue #3296
  • Loading branch information
bickelj committed Jul 24, 2024
1 parent 307ddd4 commit ded4ba5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hypha/apply/funds/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
]


Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit ded4ba5

Please sign in to comment.