We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be5a2a commit a552ba4Copy full SHA for a552ba4
styles/numpy-class.txt
@@ -2,6 +2,6 @@
2
{% if attr|len > 0 %}
3
Attributes
4
----------
5
-{% for a in attr %}{{indent}}{{a}} :
+{% for a in attr %}{{a}} :
6
{% endfor %}{% endif %}
7
"""
styles/numpy-method.txt
@@ -2,18 +2,16 @@
{% if args|len > 0 %}
Parameters
-{% for a in args %}{{indent}}{{a.arg}} :{% if hints and a.type %} {{a.type}}{% endif %}
+{% for a in args %}{{a.arg}} :{% if hints and a.type %} {{a.type}}{% endif %}
{% endfor %}{% endif %}{% if returns %}
Returns
8
-------
9
-{{indent}}
10
{% endif %}{% if yields %}
11
Yields
12
------
13
14
{% endif %}{% if raises|len > 0 %}
15
Raises
16
17
-{% for a in raises %}{{indent}}{{a}} :
+{% for a in raises %}{{a}} :
18
19
0 commit comments