{{ log.debug("Rendering warns section") }} {% if config.docstring_section_style == "table" %} {% block table_style %}

{{ section.title or "Warns:" }}

{% for warns in section.value %} {% endfor %}
Type Description
{% if warns.annotation %} {% with expression = warns.annotation %} {% include "expression.html" with context %} {% endwith %} {% endif %} {{ warns.description|convert_markdown(heading_level, html_id) }}
{% endblock table_style %} {% elif config.docstring_section_style == "list" %} {% block list_style %}

{{ section.title or "Warns:" }}

{% endblock list_style %} {% elif config.docstring_section_style == "spacy" %} {% block spacy_style %} {% for warns in section.value %} {% endfor %}
{{ (section.title or "WARNS").rstrip(":").upper() }} DESCRIPTION
{% with expression = warns.annotation %} {% include "expression.html" with context %} {% endwith %} {{ warns.description|convert_markdown(heading_level, html_id) }}
{% endblock spacy_style %} {% endif %}