fixed many inaccurate flag definitions

This commit is contained in:
Joel Höner 2016-11-28 02:27:11 +01:00
parent 90538a8040
commit 05d36bd39b
2 changed files with 2028 additions and 1011 deletions

File diff suppressed because it is too large Load Diff

17
assets/process.py Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env python
"""Process script copy & paste template."""
import json
import collections
import re
with open('instructions.json') as fi:
fi = fi.read()
data = json.loads(fi, object_pairs_hook=collections.OrderedDict)
defs = data['definitions']
# ... processing code here ...
with open('instructions.json', 'w') as of:
json.dump(data, of)