import json from typing import Any, Dict def pretty_json(d: Dict[str, Any]) -> str: return json.dumps(d, ensure_ascii=False, indent=2)