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=(',', ': ')))