Skip to content

to_enums

django_spire.contrib.converters.to_enums

django_choices_to_enums

Source code in django_spire/contrib/converters/to_enums.py
6
7
8
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)