From 1fdaa331686537e59f1ecc72559f0353bf5912d5 Mon Sep 17 00:00:00 2001 From: alifnaufalyasin Date: Fri, 26 Jan 2024 08:20:00 +0700 Subject: [PATCH] update action using manual trigger --- scripts/script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/script.py b/scripts/script.py index 0723fb51..536105a6 100644 --- a/scripts/script.py +++ b/scripts/script.py @@ -13,9 +13,9 @@ def csv_to_json(csv_file, json_file): if __name__ == "__main__": # Replace 'input.csv' with the path of your CSV file - csv_file_path = './scripts/dataMember.csv' + csv_file_path = './dataMember.csv' # Replace 'output.json' with the desired path for the JSON output file - json_file_path = './scripts/dataMember.json' + json_file_path = './dataMember.json' csv_to_json(csv_file_path, json_file_path)