From 8dba9a7ee06c3d6d8fe63f491c567dfeeb2c5382 Mon Sep 17 00:00:00 2001 From: Tobias Augspurger Date: Wed, 28 Aug 2024 12:31:49 +0200 Subject: [PATCH] fix relative path --- .github/workflows/ecosystems_to_grist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecosystems_to_grist.py b/.github/workflows/ecosystems_to_grist.py index 28b31d1cc5..9c3248a8fd 100644 --- a/.github/workflows/ecosystems_to_grist.py +++ b/.github/workflows/ecosystems_to_grist.py @@ -76,7 +76,7 @@ # manually created labels can be added to the ecosyste.ms data -CSV_org_labels = "organizations_labeled.csv" +CSV_org_labels = ".github/workflows/organizations_labeled.csv" df_org_labels = pd.read_csv(CSV_org_labels,header=0) # define variables that are needed to extract nested data in the JSON @@ -269,7 +269,7 @@ # Rewrite the csv file with the new organizations header = ["organization_user_name","organization_namespace_url","organization_website", "location_country", "form_of_organization"] -df_grist_organization.to_csv('organizations_labeled.csv', columns = header, index=False) +df_grist_organization.to_csv(CSV_org_labels, columns = header, index=False) def calculate_size_in_bytes(data): """