Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion collector_db/DTOConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion core/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down