Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
yt-project
GitHub Repository: yt-project/yt
Path: blob/main/doc/source/_templates/autosummary/class.rst
928 views
{% extends "!autosummary/class.rst" %}

{% block methods %}
{% if methods %}
.. autosummary::
   :toctree:
   {% for item in methods %}
       ~{{ name }}.{{ item }}
   {%- endfor %}

{% endif %}
{% endblock %}

{% block attributes %}
{% if attributes %}
.. autosummary::
   :toctree:
   {% for item in attributes %}
       ~{{ name }}.{{ item }}
   {%- endfor %}

{% endif %}
{% endblock %}