Source code for project_config.serializers.json

"""JSON serializing."""

from __future__ import annotations

import json
from typing import Any


[docs]def dumps(obj: Any, **kwargs: Any) -> str: # noqa: D103 return f"{json.dumps(obj, indent=2, **kwargs)}\n"