From ff586b48ee1c71c3aa7869d58182f959fa98c8d0 Mon Sep 17 00:00:00 2001 From: TylerCG <117808427+TylerCG@users.noreply.github.com> Date: Sun, 27 Apr 2025 19:02:05 -0400 Subject: [PATCH] Update download.py --- app/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/download.py b/app/download.py index 3e7bc1a..7683f2e 100644 --- a/app/download.py +++ b/app/download.py @@ -214,7 +214,7 @@ class dropout(): # Sort the json_data by the 'SHOW' key sorted_json_data = sorted(json_data, key=lambda x: x['SHOW']) - with open('./data/dropout.json', 'w') as json_file: + with open('/data/dropout.json', 'w') as json_file: json.dump(sorted_json_data, json_file, indent=4) class youtube():