Skip to content

to_enums

django_spire.core.converters.to_enums

django_choices_to_enums

Source code in django_spire/core/converters/to_enums.py
4
5
6
7
8
9
def django_choices_to_enums(
        class_name: str,
        choices: list[tuple[str, str]]
):
    choices_dict = {str(k).upper(): k for k, _ in choices}
    return Enum(class_name, choices_dict)