From 730938959628d1770f5ce4d584df35f9da269895 Mon Sep 17 00:00:00 2001 From: Alexandru Artimon Date: Fri, 9 Feb 2024 15:02:10 +0000 Subject: [PATCH] HDX-9521 - Disable Google DLP - fix failing test --- ckanext-hdx_search/ckanext/hdx_search/actions/actions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ckanext-hdx_search/ckanext/hdx_search/actions/actions.py b/ckanext-hdx_search/ckanext/hdx_search/actions/actions.py index ab8b63704b..9430619b8e 100644 --- a/ckanext-hdx_search/ckanext/hdx_search/actions/actions.py +++ b/ckanext-hdx_search/ckanext/hdx_search/actions/actions.py @@ -7,7 +7,6 @@ import ckan.lib.munge as munge import ckan.model as model import ckan.plugins.toolkit as tk -import ckanext.hdx_search.helpers.qa_data as qa_data log = logging.getLogger(__name__) @@ -61,4 +60,3 @@ def hdx_get_package_showcase_id_list(context, data_dict): # get a list of showcase ids associated with the package id showcase_id_list = ShowcasePackageAssociation.get_showcase_ids_for_package(validated_data_dict['package_id']) return showcase_id_list -