From 031e9b8be1aef0781811e2a41a56c1a9355e8610 Mon Sep 17 00:00:00 2001 From: Sophie Waldman <62553142+sjwmoveon@users.noreply.github.com> Date: Thu, 30 Jan 2025 14:48:09 -0500 Subject: [PATCH 1/2] Fix missing end string --- parsons/action_network/action_network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/parsons/action_network/action_network.py b/parsons/action_network/action_network.py index 10436d8b29..2891105b2e 100644 --- a/parsons/action_network/action_network.py +++ b/parsons/action_network/action_network.py @@ -1940,6 +1940,7 @@ def get_unique_id_list(self, unique_id_list_id): `Args:` unique_id_list_id: The unique id of the unique ID list + """ return self.api.get_request(f"unique_id_lists/{unique_id_list_id}") def create_unique_id_list(self, list_name, unique_ids): From a04242b37840cad4ddecd566c7bdb83fe074d159 Mon Sep 17 00:00:00 2001 From: Sophie Waldman <62553142+sjwmoveon@users.noreply.github.com> Date: Thu, 30 Jan 2025 14:51:05 -0500 Subject: [PATCH 2/2] Add rest of missing comment --- parsons/action_network/action_network.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/parsons/action_network/action_network.py b/parsons/action_network/action_network.py index 2891105b2e..aa87880f52 100644 --- a/parsons/action_network/action_network.py +++ b/parsons/action_network/action_network.py @@ -1940,6 +1940,10 @@ def get_unique_id_list(self, unique_id_list_id): `Args:` unique_id_list_id: The unique id of the unique ID list + `Returns:` + A JSON response with the unique ID list details + `Documentation Reference`: + https://actionnetwork.org/docs/v2/unique_id_lists """ return self.api.get_request(f"unique_id_lists/{unique_id_list_id}")