Source code for help_pages.help_section
"""This module contains pydantic classes for help sections."""
import enum
from dataclasses import dataclass
from django.utils.safestring import SafeString
# TODO(AlexHx8472): Check if SafeString should be used instead or additionally for all attributes. # noqa: FIX002
[docs]
class ValueRenderType(enum.Enum):
"""Determines how the value part of the list is rendered."""
@dataclass
@dataclass
@dataclass