We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d232103 commit a765df6Copy full SHA for a765df6
1 file changed
{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst
@@ -6,6 +6,8 @@
6
7
.. autoclass:: {{ fullname }}
8
9
+{% set methods = methods | select("ne", "__init__") | list %}
10
+
11
{% block attributes %}
12
{% for item in attributes %}
13
{% if loop.first %}
@@ -19,7 +21,7 @@ Attributes table
19
21
{% endblock %}
20
22
23
{% block methods %}
-{% for item in methods if item != "__init__" %}
24
+{% for item in methods %}
25
26
Methods table
27
~~~~~~~~~~~~~
@@ -42,7 +44,7 @@ Attributes
42
44
43
45
46
{% block methods_documentation %}
47
48
49
Methods
50
~~~~~~~
0 commit comments