Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions hypha/apply/projects/forms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from django.conf import settings

from hypha.apply.projects.models.project import (
COMPLETE,
INTERNAL_APPROVAL,
PROJECT_STATUS_CHOICES,
)
Expand All @@ -16,9 +15,7 @@ def get_project_status_options() -> List[Tuple[str, str]]:
being able to set these
"""
return [
status
for status in PROJECT_STATUS_CHOICES
if status[0] not in [COMPLETE, INTERNAL_APPROVAL]
status for status in PROJECT_STATUS_CHOICES if status[0] != INTERNAL_APPROVAL
]


Expand Down
Loading