"""Registries"""
{% raw -%}
from enum import Enum
{% endraw %}

class Registry(str, Enum):
    """Registries"""
{% for _, row in data.iterrows() %}
    {{ row['abbreviation'] }} = "{{ row['name'] }} ({{ row['abbreviation'] }})"
{%- endfor %}

