(obj)
| 27 | sys.path.append(current_dir) |
| 28 | |
| 29 | def compact_json_dumps(obj): |
| 30 | return json.dumps(obj, indent=None, separators=(",", ":"), ensure_ascii=False) |
| 31 | |
| 32 | ACTION_SCHEMA = json.load(open(os.path.join(current_dir, 'utils/schema', 'schema.json'), encoding="utf-8")) |
| 33 | items = list(ACTION_SCHEMA.items()) |
nothing calls this directly
no outgoing calls
no test coverage detected