From b3327e49cef5a71b4997e09410c7e786401f0f6e Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Tue, 19 Nov 2024 11:15:34 +0330 Subject: [PATCH] feat: passing the website platform id as string! --- dags/hivemind_etl_helpers/src/utils/modules/website.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dags/hivemind_etl_helpers/src/utils/modules/website.py b/dags/hivemind_etl_helpers/src/utils/modules/website.py index 8b473570..d0901935 100644 --- a/dags/hivemind_etl_helpers/src/utils/modules/website.py +++ b/dags/hivemind_etl_helpers/src/utils/modules/website.py @@ -50,7 +50,7 @@ def get_learning_platforms( communities_data.append( { "community_id": str(community), - "platform_id": platform_id, + "platform_id": str(platform_id), "urls": website_links, } )