File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2
2
{% if attr|len > 0 %}
3
3
Attributes
4
4
----------
5
- {% for a in attr %}{{indent}}{{ a}} :
5
+ {% for a in attr %}{{a}} :
6
6
{% endfor %}{% endif %}
7
7
"""
Original file line number Diff line number Diff line change 2
2
{% if args|len > 0 %}
3
3
Parameters
4
4
----------
5
- {% for a in args %}{{indent}}{{ a.arg}} :{% if hints and a.type %} {{a.type}}{% endif %}
5
+ {% for a in args %}{{a.arg}} :{% if hints and a.type %} {{a.type}}{% endif %}
6
6
{% endfor %}{% endif %}{% if returns %}
7
7
Returns
8
8
-------
9
- {{indent}}
10
9
{% endif %}{% if yields %}
11
10
Yields
12
11
------
13
- {{indent}}
14
12
{% endif %}{% if raises|len > 0 %}
15
13
Raises
16
14
------
17
- {% for a in raises %}{{indent}}{{ a}} :
15
+ {% for a in raises %}{{a}} :
18
16
{% endfor %}{% endif %}
19
17
"""
You can’t perform that action at this time.
0 commit comments