{{ log.debug() }} {% if config.docstring_section_style == "table" %}

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

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

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

{% elif config.docstring_section_style == "spacy" %} {% for raises in section.value %} {% endfor %}
RAISES DESCRIPTION
{% with expression = raises.annotation %} {% include "expression.html" with context %} {% endwith %} {{ raises.description|convert_markdown(heading_level, html_id) }}
{% endif %}