{% extends "_base/attribute.html" %}
{% block heading scoped %}
  ‹›
  {% if config.show_symbol_type_heading %}{% endif %}
  {%+ filter highlight(language="python", inline=True) %}
    {{ attribute_name }}{% if attribute.annotation %}: {{ attribute.annotation }}{% endif %}
  {% endfilter %}
{% endblock heading %}
{% block contents scoped %}
  {{ super() }}
  {% if attribute.value %}
  
Defined Value:
{%+ filter highlight(language="python", inline=False) %} {{ attribute.source }} {% endfilter %} {% endif %} {% endblock contents %}