Skip to content

Commit

Permalink
update class template for documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
CraigYanitski committed Feb 1, 2024
1 parent 71f9fd2 commit e4da677
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/_templates/custom-module-template.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
:toctree:
{% for item in attributes %}
{%- set shortitem = '.'.join(item.split('.')[1:]) %}
{{ shortitem }}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
Expand All @@ -27,7 +27,7 @@
:nosignatures:
{% for item in functions %}
{%- set shortitem = '.'.join(item.split('.')[1:]) %}
{{ shortitem }}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
Expand All @@ -42,7 +42,7 @@
:nosignatures:
{% for item in classes %}
{%- set shortitem = '.'.join(item.split('.')[1:]) %}
{{ shortitem }}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
Expand All @@ -55,7 +55,7 @@
:toctree:
{% for item in exceptions %}
{%- set shortitem = '.'.join(item.split('.')[1:]) %}
{{ shortitem }}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
Expand Down

0 comments on commit e4da677

Please sign in to comment.