mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-04-19 08:55:15 +00:00
34 lines
630 B
ReStructuredText
34 lines
630 B
ReStructuredText
|
{{ fullname | escape | underline}}
|
||
|
|
||
|
.. currentmodule:: {{ module }}
|
||
|
|
||
|
.. autoclass:: {{ objname }}
|
||
|
:members:
|
||
|
:undoc-members:
|
||
|
:show-inheritance:
|
||
|
:inherited-members:
|
||
|
|
||
|
{% block methods %}
|
||
|
.. automethod:: __init__
|
||
|
|
||
|
{% if methods %}
|
||
|
.. rubric:: {{ _('Methods') }}
|
||
|
|
||
|
.. autosummary::
|
||
|
{% for item in methods %}
|
||
|
~{{ name }}.{{ item }}
|
||
|
{%- endfor %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block attributes %}
|
||
|
{% if attributes %}
|
||
|
.. rubric:: {{ _('Attributes') }}
|
||
|
|
||
|
.. autosummary::
|
||
|
{% for item in attributes %}
|
||
|
~{{ name }}.{{ item }}
|
||
|
{%- endfor %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|