From 0a948e38ca0b12fbd80fe71e921e04ad7dfca134 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Tue, 26 Jan 2021 17:37:39 +1100 Subject: [PATCH] fix filepaths in merge script --- .github/scripts/merge_csv_to_topojson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/merge_csv_to_topojson.py b/.github/scripts/merge_csv_to_topojson.py index 7272660..352f499 100644 --- a/.github/scripts/merge_csv_to_topojson.py +++ b/.github/scripts/merge_csv_to_topojson.py @@ -3,8 +3,8 @@ import csv import json # files to merge -csv_file = '../../website/data/library_services_information.csv' -topojson_file = '../../website/data/boundaries.topo.json' +csv_file = './website/data/library_services_information.csv' +topojson_file = './website/data/boundaries.topo.json' geo = open(topojson_file, 'r') # open the topo.json file json_data = json.loads(geo.read()) # read the file and load into a dict