From 66d6be2527d2fde9154d2cd337f188efa92e6338 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 20 Mar 2020 17:59:05 +0100 Subject: [PATCH] Delete merge_official_and_community.py --- merge_official_and_community.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 merge_official_and_community.py diff --git a/merge_official_and_community.py b/merge_official_and_community.py deleted file mode 100644 index caa502a8..00000000 --- a/merge_official_and_community.py +++ /dev/null @@ -1,14 +0,0 @@ -import json - -community = json.loads(open("community.json").read()) -official = json.loads(open("official.json").read()) - -# Add high quality and set working state for official apps -for app, infos in official.items(): - infos["high_quality"] = True - infos["state"] = "working" - -merged = community -merged.update(official) - -open("apps.json", "w").write(json.dumps(merged, sort_keys=True, indent=4, separators=(',', ': ')))