Update download.py

This commit is contained in:
TylerCG 2025-04-27 19:02:05 -04:00
parent 28bd2f645d
commit ff586b48ee

View File

@ -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():