25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
461 B

  1. # This module is automatically generated by autogen.sh. DO NOT EDIT.
  2. from . import _{{ pvd|up_or_title(pvd) }}
  3. class _{{ pvd|up_or_title(typ) }}(_{{ pvd|up_or_title(pvd) }}):
  4. _type = "{{ typ }}"
  5. _icon_dir = "resources/{{ pvd }}/{{ typ }}"
  6. {% for meta in metas %}
  7. class {{ meta["name"] }}(_{{ pvd|up_or_title(typ) }}):
  8. _icon = "{{ meta["icon"] }}"{% endfor %}
  9. # Aliases
  10. {% for svc, alias in aliases.items() %}
  11. {{ alias }} = {{ svc }}{% endfor %}