diff --git a/collector_db/DTOConverter.py b/collector_db/DTOConverter.py index 2b6cf521..b43fbbe9 100644 --- a/collector_db/DTOConverter.py +++ b/collector_db/DTOConverter.py @@ -100,7 +100,7 @@ def user_url_agency_suggestion_to_final_review_annotation_agency_user_info( if suggestion is None: return None return GetNextURLForAgencyAgencyInfo( - suggestion_type=SuggestionType.MANUAL_SUGGESTION, + suggestion_type=SuggestionType.USER_SUGGESTION, pdap_agency_id=suggestion.agency_id, agency_name=suggestion.agency.name, state=suggestion.agency.state, diff --git a/core/enums.py b/core/enums.py index 714b1d03..173c66e9 100644 --- a/core/enums.py +++ b/core/enums.py @@ -54,7 +54,7 @@ class SuggestionType(Enum): Identifies the specific kind of suggestion made for a URL """ AUTO_SUGGESTION = "Auto Suggestion" - MANUAL_SUGGESTION = "Manual Suggestion" + USER_SUGGESTION = "User Suggestion" UNKNOWN = "Unknown" NEW_AGENCY = "New Agency" CONFIRMED = "Confirmed"