From cfad874f3fb95a6dd9633a748f99227e59f0a1fc Mon Sep 17 00:00:00 2001 From: Max Chis Date: Thu, 17 Apr 2025 15:43:21 -0400 Subject: [PATCH] fix(app): Change suggestion type `MANUAL_SUGGESTION` to `USER_SUGGESTION` --- collector_db/DTOConverter.py | 2 +- core/enums.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"