Patch_Hawk / patchhawk /data /benign /io_json.py
RAMCr7's picture
Final patch
58f6308
raw
history blame contribute delete
142 Bytes
import json
def format_json(obj):
"""Format dictionary as readable JSON string."""
return json.dumps(obj, indent=4, sort_keys=True)