Skip to content

Commit

Permalink
fix relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ly0n committed Aug 28, 2024
1 parent 02b7a3c commit 8dba9a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ecosystems_to_grist.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):
"""
Expand Down

0 comments on commit 8dba9a7

Please sign in to comment.