Uuuh re-add high-quality + working state, c.f. commit from Maniack

This commit is contained in:
Alexandre Aubin
2019-04-03 01:20:27 +02:00
parent eb43b14e2b
commit dadc69d947
2 changed files with 53 additions and 24 deletions

View File

@ -3,6 +3,11 @@ 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)